pash: hide command -v output

This commit is contained in:
Dylan Araps 2019-11-30 10:03:08 +00:00
parent 540ed1abc2
commit 7b3be8069c
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 3 additions and 3 deletions

6
pash
View File

@ -62,7 +62,7 @@ pw_copy() {
}
pw_list() {
if command -v tree 2>/dev/null; then
if command -v tree >/dev/null 2>&1; then
tree --noreport
else
@ -136,8 +136,8 @@ main() {
# Look for both 'gpg' and 'gpg2',
# preferring 'gpg2' if it is available.
command -v gpg 2>/dev/null && gpg=gpg
command -v gpg2 2>/dev/null && gpg=gpg2
command -v gpg >/dev/null 2>&1 && gpg=gpg
command -v gpg2 >/dev/null 2>&1 && gpg=gpg2
[ "$gpg" ] ||
die "GPG not found."