私はシェル スクリプトの初心者で、複数の rm コマンドを含むスクリプトを作成しています。スクリプトでは、いくつかのディレクトリ内のファイルを削除する必要があります。各コマンドの終了ステータスを取得し、何かが失敗した場合は終了ステータスを返して次のコマンドを続行したいと考えています。スクリプトを修正するのを手伝ってくれる人はいますか。
#!/bin/bash
PATH1=mydir/folder/
PATH2=mydir/newfolder/
HOST= hostname | grep -o "[0-9]*" | head -1
case "$HOST" in
01)echo "Removing files in server 1.."
find $PATH1/logs -maxdepth 1 -mtime +30 -type f \( -name "*.log*" -o -name "*.out*" \) -exec rm -f {} \;
find $PATH1/logs -maxdepth 1 -mtime +30 -type f \( -name "*.log*" -o -name "*.out*" \) -exec rm -f {} \;
RETVAL=$?
;;
02)echo "Remove logfiles in server 02"
find $PATH2/logs -maxdepth 1 -mtime +30 -type f \( -name "*.log*" -o - name "*.out*" \) -exec rm -f {} \;
find $PATH2/logs -maxdepth 1 -mtime +30 -type f \( -name "*.log*" -o -name "*.out*" \) -exec rm -f {} \;
RETVAL=$?
;;
*)
echo "Removal of log files is complete"
esac
答え1
はecho $?
前のコマンドのステータスを返すはずです。
if [ ! $? -eq 0 ]; then
echo "command failed"
else
echo "command success"
fi