Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 182 Bytes

File metadata and controls

15 lines (13 loc) · 182 Bytes

ひとつ前のコマンドの終了コード(exit_code)

echo $?

使い方サンプル

if [ $? == 0 ];
then
    echo "success"
else
    echo "failed"
fi