gpt4 book ai didi

linux - 如何在 linux 中运行 .sh 文件时打开终端?

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:43 25 4
gpt4 key购买 nike

所以我有我的文件 run.sh :

#!/bin/bash
rails s
cd public/angular
grunt serve

现在,如果我运行 sh run.sh,我会启动 Rails 服务器,但永远不会触发 grunt serve。但我正在努力解决的主要问题是我想打开一个单独的终端窗口,其中 rails s 触发,然后打开第二个终端窗口,其中运行 grunt 服务。

所以它应该看起来像:

     #!/bin/bash
Open new terminal window ->
run rails s in newly opened window
cd public/angular
open second terminal window
run grunt serve in second terminal window

是否可以在 .sh 文件中执行此操作?

最佳答案

这样的东西行得通吗?

#!/bin/bash
xterm -e "rails s"
cd public/angular
xterm -e "grunt serve"

xterm 替换为您首选的终端仿真器(gnome-terminalkonsole 等)。

关于linux - 如何在 linux 中运行 .sh 文件时打开终端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26349840/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com