fish/functions/quietly.fish @ 7d16f9d89280

Fix my garbage fingers
author Steve Losh <steve@stevelosh.com>
date Tue, 29 Mar 2016 11:29:47 +0000
parents 0f635ab417a7
children (none)
function quietly -d "Run a command and hide the output"
    eval $argv >/dev/null ^/dev/null
end