vcsh icon indicating copy to clipboard operation
vcsh copied to clipboard

[FR] please add 'quiet' option

Open ZuBB opened this issue 9 years ago • 3 comments

vv@vv-Latitude-E5520 ~ $ vcsh pull > /dev/null
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 1), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (5/5), done.
From github.com:ZuBB/dotfiles
   c67ad92..ea348c7  master     -> origin/master
vv@vv-Latitude-E5520 ~ $ 

I am using 'vcsh run' as workaround

ZuBB avatar Apr 18 '15 14:04 ZuBB

Hi, and thanks for reporting.

It should work though. You can try to redirect stderr like so:

vcsh run 1>/dev/null 2>/dev/null

ncanceill avatar Apr 22 '15 08:04 ncanceill

Please see that branch.

It's not clean enough to merge into master, though.

RichiH avatar Apr 23 '15 11:04 RichiH

yes, it does the trick.

ps: I have managed to do my task without that option

if [ -f ~/.local/bin/async_login_tasks ]; then
    (nohup ~/.local/bin/async_login_tasks >/dev/null 2>&1 &) >/dev/null 2>&1
fi

ZuBB avatar Apr 25 '15 09:04 ZuBB