configs  run.fish at 24d2eb82f0b4e25d7bd29f47b75470c518528c55c4483325ec2dd97f4236b50c

File fish/functions/run.fish artifact 4b306f4755 part of check-in 24d2eb82f0b4e25d7bd29f47b75470c518528c55c4483325ec2dd97f4236b50c


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

    $argv &
    disown
end