根據 Terminator 手冊頁,我可以--command
在執行terminator
命令時使用該標誌來在終端視窗開啟時執行命令。但是,我似乎無法讓它發揮作用。我嘗試過以下方法:
terminator --command="ls"
terminator --command ls
terminator --command "ls"
第一步是讓它發揮作用。其次,手冊頁還指出它將運行該命令「而不是預設 shell 或設定檔指定的命令」。這是否意味著我的文件中的別名.bashrc
不會被載入?如果是這樣,我怎麼能加載它們?
我要執行的完整命令是這樣的:
terminator --command ssh-apixel --geometry 900x575+110+55 --new-tab
其中ssh-apixel
是我的文件中定義的別名.bashrc
。
答案1
這最終對我有用:
terminator -e "bash --rcfile <(echo '. /home/apixel/.bashrc; ssh [email protected]')" --geometry 900x575+110+55 --new-tab