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

本文共 719 字,大约阅读时间需要 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

 

转载地址:http://uxzix.baihongyu.com/

你可能感兴趣的文章
Redis_master-slave模式
查看>>
qemu安装
查看>>
多媒体开发之rtmp---rtmp client 端的实现
查看>>
3.使用Maven构建Web项目
查看>>
iView实现自定义Modal
查看>>
如何在云帮上配置https
查看>>
JQuery干货篇之插入元素
查看>>
Imperva开源域目录控制器,简化活动目录集成
查看>>
可观察性驱动开发,探索未知之地
查看>>
Webpack构建兼容IE8
查看>>
Deis发布1.4版本,支持Microsoft Azure
查看>>
解读2016之Golang篇:极速提升,逐步超越
查看>>
原创:新手布局福音!微信小程序使用flex的一些基础样式属性(二)
查看>>
Swift 烧脑体操(二) - 函数的参数
查看>>
用Elm语言降低失败的风险
查看>>
荷兰商业银行使用精益领导力推行改进
查看>>
cisco 多生成树MST笔记
查看>>
FPGA设计——图像处理(锐化增强)
查看>>
LINUX REDHAT第十三单元练习题
查看>>
Play Framework
查看>>