博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[tmux] Automate your workflow using tmux scripts
阅读量:5094 次
发布时间:2019-06-13

本文共 773 字,大约阅读时间需要 2 分钟。

Do you have a standard workflow that involves setting up a specific tmux layout, or running certain commands? By writing tmux scripts, you can automate your tedious daily setup, while simultaneously documenting it for yourself. We'll cover the tmux command equivalents of common key bindings and write some simple, useful scripts.

 

# Set some configuration optionsSESSION=$USER# Create a new, detached sessiontmux new-session -d -s $SESSION# Create a second windowtmux new-window -t $SESSION:1 -n 'webserver'# Select and configure the first windowtmux select-window -t $SESSION:1tmux split-window -v tmux send-keys 'cd examples/react; python -m SimpleHTTPServer' C-m# Attach to the sessiontmux attach-session -t $SESSION

 

转载于:https://www.cnblogs.com/Answer1215/p/6735020.html

你可能感兴趣的文章
Win7 + VS2015 + CMake3.6.1-GUI + Makefile 编译开源库
查看>>
Blender Python UV 学习
查看>>
window添加右键菜单
查看>>
入手腾龙SP AF90mm MACRO
查看>>
ORACLE 递归查询
查看>>
20172315 2017-2018-2 《程序设计与数据结构》实验三报告
查看>>
别把SEO当苦力活,做优化要讲究策略
查看>>
Django项目:CRM(客户关系管理系统)--41--33PerfectCRM实现King_admin编辑整张表限制
查看>>
关于时间
查看>>
面向对象 阶段性总结
查看>>
[Android] 开发第十天
查看>>
[html]window.open 使用示例
查看>>
.NET下使用socket.io随笔记录
查看>>
操作~拷贝clone()
查看>>
通过this()调用有参构造方法
查看>>
Java开发中的23种设计模式
查看>>
jQuery源码分析(2) - 为什么不用new jQuery而是用$()
查看>>
jQuery源码分析(3) - 判断传入对象是否为function或array
查看>>
[转]【EL表达式】11个内置对象(用的少) & EL执行表达式
查看>>
ArrayList对象声明& arrayList.size()
查看>>