Refactor config.fish to use functions moved to functions folder

This commit is contained in:
mitchell 2020-08-09 18:59:14 -04:00
parent b5e93105d6
commit 47a88f93d1
10 changed files with 125 additions and 121 deletions

View file

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