打开终端时执行 python 脚本
Execute python script while open terminal
我想要这个:在我打开终端时执行 python 脚本(我正在使用 iTerm
和 fish-shell
)。
fish-shell was new to me, so I read the documentation - something I really recommend. Look for the title "Initialisation Files": http://fishshell.com/docs/current/index.html#initialization
看起来你从 ~/.config/fish/config.fish
调用你的 python 脚本
所以我在我的 Macbook 上安装了 fish
,我必须创建 config.fish
文件。我刚刚放的是:
~/gash.py
在我的主目录中执行 python 程序 gash.py
。当然是 #!行必须是正确的,我必须有执行权限(像往常一样)。我输入了 fish
shell 并执行了程序。
谢谢,fish-shell
看起来很有趣。我喜欢计算器。
我想要这个:在我打开终端时执行 python 脚本(我正在使用 iTerm
和 fish-shell
)。
fish-shell was new to me, so I read the documentation - something I really recommend. Look for the title "Initialisation Files": http://fishshell.com/docs/current/index.html#initialization
看起来你从 ~/.config/fish/config.fish
所以我在我的 Macbook 上安装了 fish
,我必须创建 config.fish
文件。我刚刚放的是:
~/gash.py
在我的主目录中执行 python 程序 gash.py
。当然是 #!行必须是正确的,我必须有执行权限(像往常一样)。我输入了 fish
shell 并执行了程序。
谢谢,fish-shell
看起来很有趣。我喜欢计算器。