加快我的控制台设置
我在一个大型软件项目的不同分支工作。
对于每个分支,我都有一个打开四个选项卡的 gnome 终端:
- 主 shell 在各种模块 (mvn) 中执行构建命令
- ./bin 文件夹以重新/启动应用程序服务器
- tail -F sysout
- tail -F 另一个 log4j-Logfile
这设置在我正在工作的环境中工作得很好。
但是要进行该设置,我需要
- 启动终端
- cd 来分支
- 打开其他三个选项卡
- cd 到相应的文件夹
- launch tail
这非常烦人并且需要太长时间。
我怎样才能加快速度?
我知道有更好的、也许可以编写脚本的工具(xterm、screen 等)
I work on different branches of a big software project.
For each branch I have a gnome-terminal with four tabs open:
- main shell to execute build commands in various modules (mvn)
- ./bin folder to re/launch the app-server
- tail -F sysout
- tail -F another log4j-Logfile
This setup works quite well in the environment I'm working in.
But getting to that setup I need to
- start terminal
- cd to branch
- open three other tabs
- cd to respecitve folders
- launch tail
This is quite annoying and takes too long.
How can I speed it up ?
I know there are better and perhaps scriptable tools (xterm, screen and the like)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅有关打开新选项卡的 SO Q 打开新选项卡使用命令行在 gnome-terminal 中选项卡
然后我建议您在 .bashrc 文件中实现几个 bash 函数以进行各种操作,并将它们粘合在一起。
screen
也是一个选项,启动 screen 并设置您的环境,当您乐意使用 screen 中的“会话”功能时,请参阅此 链接See this SO Q about open a new tab Open a new tab in gnome-terminal using command line
Then I would suggest that you implement a couple of bash-functions in your .bashrc file for the various operations and glue them together.
screen
is an option as well, start screen and set up your environment, when you are happy use the "session" feature in screen, see this link