我正在創建一個shell腳本,該腳本將始終從shell讀取用戶的當前命令。在Linux中獲取當前命令
我目前使用的read
命令,我不滿意,因爲它用於提示問題。例如:
[email protected]: ./script.sh
Question here?
answer - `read` command
我希望在用戶直接輸入命令行命令(腳本通過/etc/profile.d/myapp.sh已經運行一次登錄)要調用的我的腳本。
[email protected]: read the command here
result will happen
我的示例腳本myapp.sh
:
#!/bin/bash
if [ "input" = "value"]
then
do some actions
fi
你知道'bash' shell的'source'和'eval'內建函數嗎? –
不...對於缺乏知識感到抱歉 – BLNK
閱讀http://www.tldp.org/LDP/abs/html/ –