创建自定义命令myjps 用root账户进入/bin目录 建立一个名为myjps的文件,内容: 1 pwdx `jps -l|grep -v jps|awk '{print $1}'` 赋予权限:chmod 755 myjps 其他账户也能使用myjps命令了 linux