Bashのエラー検出

wgetによるファイル取得

wget http://~~~

wget -r と打つと大量にダウンロードしてしまいます。 また、同じようなコマンドにcurlがあります。

grepでの文字列取得

grep -オプション 文字列

参考 http://www.searchman.info/tips/1090.html

bashの条件分岐の例

if[条件]; then
処理
else
処理
fi

参考 http://shellscript.sunone.me/if_and_test.html