fish/functions/quietly.fish @ 0bc82682a613

Merge.
author Steve Losh <steve@stevelosh.com>
date Mon, 29 Oct 2018 14:02:07 -0400
parents 0f635ab417a7
children (none)
function quietly -d "Run a command and hide the output"
    eval $argv >/dev/null ^/dev/null
end