facebook twitter hatena line email

Linux/コマンドメモ/bash

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:17時点における127.0.0.1 (トーク)による版 (ページの作成:「 ==シェルスクリプト実行== スクリプトのあるDirまでcdでいき $ ./xxx.sh とする。 ○シェルは実行権限がいる #!/bin/bash ProcessCount...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

シェルスクリプト実行

スクリプトのある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