sh -c "exit 0" $ echo $? 0 $ sh -c "exit 1" $ echo $? 1. Running sh -c "…" runs the string as a bash command and returns the result.
確定! 回上一頁