Add ssh and key related aliases and reformat all fish files

This commit is contained in:
mitchell 2020-10-31 18:13:25 -04:00
parent 0ef8fb571a
commit 7a361e5260
10 changed files with 72 additions and 54 deletions

View file

@ -2,5 +2,5 @@ function back -d 'A shortcut for backgrounding a command using nohup and named l
set log_name (string join _ $argv)
echo "log file: $log_name.out"
nohup $argv > "$log_name.out" &
nohup $argv >"$log_name.out" &
end