#!/bin/bash # 錯誤的指令 ls --wrong-opt # 判斷前一個指令是否執行成功 if [ $? -eq 0 ]; then echo "執行成功" exit 0 else echo "執行失敗" >&2 # 輸出至標準錯誤 ...
確定! 回上一頁