Linux 的 Bash script 想要抓到此隻程式的完整路徑、從根目錄到此程式的路徑,要怎麼做?
標籤: script
Bash alias 如何傳入參數($1)
Linux 的 Bash shell 會將常用的命令(或記不起來的命令)設定 alias,但是想要帶入參數,要怎麼做?
註:Bash shell 純 alias 無法帶入參數,在此使用 Bash shell 的 function 來輔助達成。
Pinterest 管理 MySQL 的 Script 工具
Pinterest 將管理 MySQL 用的 Script Open Source 出來囉!
- Pinterest 的 MySQL 管理工具(*.py):Pinterest MySQL Management Tools
- 新聞:Open-sourcing Pinterest MySQL management tools
快速查看 系統、硬碟、RAM 使用情況等資訊的 Script
想要快速查看 Linux 系統平均負載、硬碟、記憶體的使用情況等等資訊,此網站作者有寫一隻 Bash shell script 可以快速整理呈現。
安裝、使用方式
- wget http://tecmint.com/wp-content/scripts/tecmint_monitor.sh
- chmod +x ./tecmint_monitor.sh
- ./tecmint_monitor.sh # 即可呈現
Bash 執行 for 1~100 的寫法
來點非常基本的 Bash, 但是也有點複雜, Shell script 要寫 for 1~100 的方式太多種了, 要帶入變數、相隔差1、2 寫法都有些微不同, 但是這些微不同造就能不能正常執行~
在此將這些寫法做個記錄~ 方便以後查詢~
好站 - 線上分析、解釋、檢查 Shell Script
兩個 Shell Script 分析工具的站, 將看不懂的 Shell Script 可以丟上去分析、檢查, 會比較容易理解~
- ShellCheck – Online shell script analyzer - 檢查 Shell Script 的線上程式
- 說明可見: About ShellCheck
- 要將此程式於 CLI 執行檢查, 可用: koalaman/shellcheck
- 作者的網站: Vidar's Index
- 作者的Blog: Vidar’s Blog
- explainshell.com - match command-line arguments to their help text - 將 Shell Script 拆解、分析、並解釋此行的命令在做什麼事情