在 Linux 中,true
是一個簡單的內置命令,它不接受任何參數并總是返回成功(零)退出狀態
man true
或者,你可以使用 help
命令來查看 true
命令的簡短描述:
help true
這將顯示類似于以下內容的幫助信息:
true: true
Return true value.
No effect; the exit status is always 0.
Exit Status:
Always succeeds.
這告訴你 true
命令的作用是始終返回成功(0)的退出狀態。