我想在打开终端时执行 shell 命令“cmatrix”。如何实现?
答案1
您可以在位于主文件夹的文件cmatrix
中添加命令:~/.bashrc
echo 'cmatrix' >> ~/.bashrc
笔记:请确保使用>>
附加运算符。如果使用,它将仅用>
替换整个。~/.bashrc
cmatrix
答案2
因为您在问题中添加了gnome-terminal
,所以您也可以为您的配置文件使用自定义命令gnome-terminal
。优点是,该命令仅针对特定配置文件执行,而不是在某个地方启动 bash 时执行。
但首先要安装dconf-editor
。如果你在下面的步骤中犯了错误,你将需要这个工具
sudo apt-get install dconf-editor
现在打开gnome-terminal
并编辑您的个人资料设置并使用此命令
sh -c "cmatrix;bash"
如下面的屏幕截图所示。如果您不使用 bash,请将其替换bash
为您的 shell。
如果您犯了错误并且gnome-terminal
无法使用,请使用以下方法dconf-editor
来纠正您的问题:
启动dconf-editor
并导航到 GNOME 终端的设置,然后更改custom-command
配置文件use-custom-command
设置中的值gnome-terminal