aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornicm <nicm>2021-02-10 07:17:07 +0000
committernicm <nicm>2021-02-10 07:17:07 +0000
commit32186950f5ae3e3517f39b2723cc247a9da93d8c (patch)
tree987570ec6b8b55922c7bce9fa03224c3d44fd0fc
parent1492ae11a5c4f29e783f1d49f3580ee7f4d276e4 (diff)
downloadrtmux-32186950f5ae3e3517f39b2723cc247a9da93d8c.tar.gz
rtmux-32186950f5ae3e3517f39b2723cc247a9da93d8c.tar.bz2
rtmux-32186950f5ae3e3517f39b2723cc247a9da93d8c.zip
Use ~/.tmux.conf as an example rather than /etc/passwd, suggested by
deraadt@.
-rw-r--r--tmux.18
1 files changed, 4 insertions, 4 deletions
diff --git a/tmux.1 b/tmux.1
index 775d0e28..e1891009 100644
--- a/tmux.1
+++ b/tmux.1
@@ -872,12 +872,12 @@ arguments are
commands.
This may be a single argument passed to the shell, for example:
.Bd -literal -offset indent
-new-window 'vi /etc/passwd'
+new-window 'vi ~/.tmux.conf'
.Ed
.Pp
Will run:
.Bd -literal -offset indent
-/bin/sh -c 'vi /etc/passwd'
+/bin/sh -c 'vi ~/.tmux.conf'
.Ed
.Pp
Additionally, the
@@ -894,7 +894,7 @@ to be given as multiple arguments and executed directly (without
This can avoid issues with shell quoting.
For example:
.Bd -literal -offset indent
-$ tmux new-window vi /etc/passwd
+$ tmux new-window vi ~/.tmux.conf
.Ed
.Pp
Will run
@@ -940,7 +940,7 @@ $ tmux kill-window -t :1
$ tmux new-window \e; split-window -d
-$ tmux new-session -d 'vi /etc/passwd' \e; split-window -d \e; attach
+$ tmux new-session -d 'vi ~/.tmux.conf' \e; split-window -d \e; attach
.Ed
.Sh CLIENTS AND SESSIONS
The