大于90秒的重复工作统统写成代码

// 1.快速启动程序命令:vim文件添加别名(~/.bash_profile):
alias staging_log='tail -100f /data/ktv_demo/runtime/logs/console.log'
alias staging_start='cd /data/ktv_demo;sh startofbiz.sh;tail -100f /data/ktv_demo/runtime/logs/console.log'
alias staging_stop='ps -ef|grep ofbiz|grep -v grep|cut -c 9-15|xargs kill -9'
alias staging_restart='staging_stop;staging_start'


修改完执行:

$ source ~/.bash_profile




你可能感兴趣的:(大于90秒的重复工作统统写成代码)