custom function in shell script Posted on 2023 年 11 月 16 日 By 日落 在〈custom function in shell script〉中尚無留言 之前看到的 shell script 說明,建立幾乎都是用 `function`: function show-server-status() { } 被 IDE 糾正以後才知道有規範 (Google 的 style guide),像是不使用 function 宣告、命名原則: # [a-zA-Z0-9_] only # https://stackoverflow.com/a/28115066 show_server_status() { } 看來該找時間整理一下 scripts 了 Tags:Bash, Linux