加入rc.local,设置home目录,不然进入tmux时进行和home相关的操作时提示$HOME未设定,同时一些和$HOME相关的调用也不正常,如vim配置文件不加载。
export HOME=/root
tmux new -s name -d "cmd"
tmux neww -t name -d "cmd"
或先新建窗口再执行命令:
tmux new -n window1 -s sess -d
tmux send -t "sess:window1" "top" Enter
tmux neww -n window2 -t sess
tmux send -t "sess:window2" "top" Enter
标签:tmux