25
A
回答
8
使用return
操作者:
function FUNCT {
if [ blah is false ]; then
return 1 # or return 0, or even you can omit the argument.
else
keep running the function
fi
}
34
使用:
return [n]
從help return
回報:迴歸[N]
Return from a shell function. Causes a function or sourced script to exit with the return value specified by N. If N is omitted, the return status is that of the last command executed within the function or script. Exit Status: Returns N, or failure if the shell is not executing a function or script.
相關問題
- 1. 如何在MVC中退出函數?
- 2. 如何在Node.js中退出函數
- 3. 從函數退出時的Bash陷阱
- 4. BASH不同退出級別的多個退出函數
- 5. 無法捕獲ctrl-c退出函數退出bash腳本
- 6. 如何退出javascript函數?
- 7. 如何退出預計返回的bash函數
- 8. 如何在bash中的函數中導出函數?
- 9. 在Python中退出函數
- 10. Bash退出不退出
- 11. 在bash中,如何從通過管道傳輸的函數退出腳本?
- 12. BASH中的退出代碼
- 13. 退出代碼中的Bash
- 14. 退出並不在bash
- 15. 如何使bash for循環退出?
- 16. 如何使用ls退出bash循環?
- 17. 用Putty退出Bash
- 18. 函數裏面的函數,如何退出主函數
- 19. bash腳本:`退出0`無法退出
- 20. bash腳本退出,不扔退出
- 21. 在退出時退出菜單,使用bash中的PS3提示
- 22. 如何退出遞歸函數?
- 23. 如何退出這個函數/類?
- 24. Erlang退出函數?
- 25. 如何在Android中的void函數中退出?
- 26. 在git終端中退出bash
- 27. 在while循環中退出bash腳本
- 28. 在bash中自動「按Enter鍵退出」?
- 29. 在python程序中退出函數
- 30. 在Python中調用退出函數
注意,如果你'設置-e'設定在腳本的頂部,你的'返回1'或0以外的任何其他號碼,您的整個腳本將退出。 –