fish/functions/quietly.fish @ 809dbedf835c

doseq
author Steve Losh <steve@stevelosh.com>
date Fri, 09 Mar 2018 15:04:18 -0500
parents 0f635ab417a7
children (none)
function quietly -d "Run a command and hide the output"
    eval $argv >/dev/null ^/dev/null
end