1
1
Fork 0
configs/config/fish/functions/run.fish
Jonathan Schleifer 819a3b7c2e fish: Add run command to run a command in the bg
This is more convenient than "command & disown".
2020-02-20 21:16:38 +00:00

9 lines
130 B
Fish

function run
if test (count $argv) = 0
echo "Usage: run command"
return 1
end
$argv &
disown
end