diff options
-rw-r--r-- | bash.md | 4 | ||||
-rw-r--r-- | ssh.md | 8 | ||||
-rw-r--r-- | tmux.md | 5 |
3 files changed, 17 insertions, 0 deletions
@@ -21,3 +21,7 @@ Remove longest from start Loop over files for file in glob/*; do something $file; done + +## Conditionals + +* `-z`: is empty string @@ -7,3 +7,11 @@ Change password for key: ssh-keygen -p <keyname> + +## Setup login with public key + + ssh-copy-id [user@]host + +## Execute commands and start shell + + ssh -t host 'commands; bash' @@ -12,3 +12,8 @@ ## Pane management q display pane indices + +## Run command in new session + + tmux new-session \; send-keys 'command
' + #
can be entered with Ctrl-V + Enter |