summary refs log tree commit diff
path: root/home/.shrc
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-08-25 17:34:45 -0400
committerJune McEnroe <june@causal.agency>2021-08-25 17:34:45 -0400
commitad7bd9b40a9db1445413f30e1b6a63be8497dfa2 (patch)
tree6d8c7c11deb942e2eb8d75550c970a3abe3215ba /home/.shrc
parentChange liberapay link name to donate (diff)
downloadsrc-ad7bd9b40a9db1445413f30e1b6a63be8497dfa2.tar.gz
src-ad7bd9b40a9db1445413f30e1b6a63be8497dfa2.zip
Use command -v rather than type
Some shells write to standard error from type when the command is
not found. command -v is silent.
Diffstat (limited to 'home/.shrc')
-rw-r--r--home/.shrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.shrc b/home/.shrc
index 605f864e..fb474b98 100644
--- a/home/.shrc
+++ b/home/.shrc
@@ -16,7 +16,7 @@ alias gc='git commit' gca='gc --amend' gt='git tag'
 alias gp='git push' gu='git pull' gf='git fetch' gr='git rebase'
 alias rand='openssl rand -base64 33'
 alias private='eval "$(gpg -d ~/.private)"'
-type doas >/dev/null && alias sudo=doas
+command -v doas >/dev/null && alias sudo=doas
 
 cat() {
 	if [ $# -eq 1 ] && test -t 1; then