fish/functions/quietly.fish @ 8286e61c3b01

Updates
author Steve Losh <steve@stevelosh.com>
date Mon, 15 Oct 2018 16:50:22 -0700
parents 0f635ab417a7
children (none)
function quietly -d "Run a command and hide the output"
    eval $argv >/dev/null ^/dev/null
end