Linux/コマンドメモ/bash
提供: 初心者エンジニアの簡易メモ
シェルスクリプト実行
スクリプトのあるDirまでcdでいき
$ ./xxx.sh
とする。
○シェルは実行権限がいる
#!/bin/bash ProcessCount=`ps -e|grep -e 'xxx.sh' -c` if [ $ProcessCount -gt 2 ] ; then exit 1 fi cd /export1/batch/batDir/ /usr/local/bin/php bat1.php /usr/local/bin/php bat2.php
実行できなければ、bashをつける
bash xxx.sh
その他
linux/bashメモ [ショートカット]