Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
wgetコマンドの戻り値を分析したいと思います。私はそれらを試します:
GET=$(wget ftp://user:user@192.168.1.110/conf.txt echo $GET GET=`wget ftp://user:user@192.168.1.110/conf.txt` echo $GET
しかし、GET変数を表示すると戻り値が得られません
wgetの戻り値を取得する方法
で終了コードを取得できます
echo $?
コマンド実行後。ただし、ダウンロードが機能している/機能していない場合に反応したい場合は、 if を使用できます
if wget -q www.google.com then echo "works" else echo "doesn't work" fi