bq loadする際に特定のエラー時に処理やらせたいとかがあって、エラー出力でifとか書く方法を探した際のメモ。
#!/bin/sh
message=$(ls /no/file 2>& 1)
exit_code=$?
if [ "$(echo ${message} | grep 'No such file or directory')" ]; then
echo "error happened(${exit_code})"
fi
Go to list of users who liked
More than 3 years have passed since last update.
bq loadする際に特定のエラー時に処理やらせたいとかがあって、エラー出力でifとか書く方法を探した際のメモ。
#!/bin/sh
message=$(ls /no/file 2>& 1)
exit_code=$?
if [ "$(echo ${message} | grep 'No such file or directory')" ]; then
echo "error happened(${exit_code})"
fi
Register as a new user and use Qiita more conveniently
Go to list of users who liked