我想要自动:
screen -S Test
cd /home/dapkkins/Servers/Bungee
sh start.sh
^Ad
我的 sh 文件通过 ssh 运行我的服务器
答案1
创造别名
打开终端(Ctrl + Alt + T)来编辑~/.bashrc
并添加以下内容
alias startbungee='cd /home/dapkkins/Servers/Bungee && sh ./start.sh '
然后在当前 shell 中执行来自 .bashrc 的命令(使用 可执行更多操作help source
):
source ~/.bashrc
然后使用启动它
startbungee