Reformat all fish files

This commit is contained in:
mitchell 2020-08-15 19:20:08 -04:00
parent 2f5438dc21
commit 0a0a2decef
11 changed files with 112 additions and 102 deletions

View file

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