我想将默认的tmux.conf文件复制到我的主目录中,但是在Ubuntu 12.04中找不到该位置。手册页指出该文件位于/etc/tmux.conf,但这与我的设置不匹配。
我想将默认的tmux.conf文件复制到我的主目录中,但是在Ubuntu 12.04中找不到该位置。手册页指出该文件位于/etc/tmux.conf,但这与我的设置不匹配。
Answers:
您可以使用当前(默认)设置作为起点:
tmux show -g | cat > ~/.tmux.conf
请注意,由于将tmux stdout重定向到文件时存在已知错误,因此暂时需要使用cat管道。
tmux show -g | sed 's/^/set-option -g /' > ~/.tmux.conf
:该行已经在所有行之前加上set -g
cat
。做吧tmux show -g > ~/.tmux.conf
。这样的使用cat
被称为UUOC-“的无用cat
”。
根据dpkg -L tmux
哪个显示软件包已安装的文件,软件包中没有默认的tmux.conf。/etc/tmux.conf
只是您可能会使用的位置(仅对于使用tmux的多个用户有意义),它将在〜/ .tmux.conf之前进行评估。您必须创建自己的.conf文件。看看这个例子(在Google上首次点击):
没有默认/etc/tmux.conf
文件。您可以从中的示例conf文件开始/usr/share/doc/tmux/examples
,或查看手册/ web / etc。提出自己的配置文件。
该examples
目录包含:
/usr/share/doc/tmux/examples/n-marriott.conf /usr/share/doc/tmux/examples/t-williams.conf /usr/share/doc/tmux/examples/vim-keys.conf /usr/share/doc/tmux/examples/h-boetes.conf /usr/share/doc/tmux/examples/screen-keys.conf
<filename>
在目录中查找具有名称的文件,请<directoryname>
使用以下命令:find <directory> -iname <filename>
。