Linux

如何在 Unix/Linux 中創建自定義命令?

  • August 21, 2018

誰能指導我在 Unix/Linux 中創建自定義命令。

在 /usr/bin 文件夾中創建一個 bash 腳本,它應該看起來像這樣

#!/bin/bash
Whatever combination of commands you want to run when you type this thing.

它真的那麼容易。

只需將 bash 腳本命名為您想在終端中輸入的內容,並使其可執行:chmod +x filename您就可以開始了!

  1. 在您的主目錄下創建一個名為“bin”的目錄。
  2. 更新您的路徑變數以包含此 bin 目錄。將其放入.profile.bash_profle歸檔以使其永久化。

export PATH=$PATH":$HOME/bin" 3. 創建一個腳本,說“你好”並將其保存在您的 bin 目錄中。通過 授予 hello 腳本的執行權限$ chmod +x hello

#!/bin/bash    
echo My first program
  1. 重新載入.profile.bash_profle

$ . ~/.bash_profile 5. 從任何目錄,您只需鍵入:

$ hello
My first program

引用自:https://unix.stackexchange.com/questions/84686