[BACK]Return to tmux.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.1 between version 1.393 and 1.394

version 1.393, 2014/05/13 07:54:20 version 1.394, 2014/05/13 08:08:32
Line 478 
Line 478 
 arguments are  arguments are
 .Xr sh 1  .Xr sh 1
 commands.  commands.
 These must be passed as a single item, which typically means quoting them, for  This may be a single argument passed to the shell, for example:
 example:  
 .Bd -literal -offset indent  .Bd -literal -offset indent
 new-window 'vi /etc/passwd'  new-window 'vi /etc/passwd'
 .Ed  .Ed
   .Pp
   Will run:
   .Bd -literal -offset indent
   /bin/sh -c 'vi /etc/passwd'
   .Ed
   .Pp
   Additionally, the
   .Ic new-window ,
   .Ic new-session ,
   .Ic split-window ,
   .Ic respawn-window
   and
   .Ic respawn-pane
   commands allow
   .Ar shell-command
   to be given as multiple arguments and executed directly (without
   .Ql sh -c ) .
   This can avoid issues with shell quoting.
   For example:
   .Bd -literal -offset indent
   $ tmux new-window vi /etc/passwd
   .Ed
   .Pp
   Will run
   .Xr vi 1
   directly without invoking the shell.
 .Pp  .Pp
 .Ar command  .Ar command
 .Op Ar arguments  .Op Ar arguments

Legend:
Removed from v.1.393  
changed lines
  Added in v.1.394