summary refs log tree commit diff
path: root/home/.profile
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
commit08caa0a0b3da4d1dd33039ac59fb541497661671 (patch)
treedba85ab517672a0d5390a93f0ccccc30e89c21e2 /home/.profile
parentChange liberapay link name to donate (diff)
downloadsrc-08caa0a0b3da4d1dd33039ac59fb541497661671.tar.gz
src-08caa0a0b3da4d1dd33039ac59fb541497661671.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/.profile')
-rw-r--r--home/.profile8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/.profile b/home/.profile
index f4e4169e..58bac742 100644
--- a/home/.profile
+++ b/home/.profile
@@ -1,5 +1,5 @@
 _PATH=$PATH PATH=
-path() { [ -d "$1" ] && PATH="${PATH}${PATH:+:}${1}"; }
+path() { test -d "$1" && PATH="${PATH}${PATH:+:}${1}"; }
 for prefix in '' /usr/local /opt/local /usr ~/.local; do
 	path "${prefix}/sbin"
 	path "${prefix}/bin"
@@ -9,7 +9,7 @@ path /usr/games
 export MANPATH=:~/.local/share/man
 
 export EDITOR=vi
-type nvi >/dev/null && EDITOR=nvi
+command -v nvi >/dev/null && EDITOR=nvi
 export EXINIT='set ai iclower sm sw=4 ts=4 para=BlBdPpIt sect=ShSs | map gg 1G'
 export PAGER=less
 export LESS=FRXix4
@@ -17,7 +17,7 @@ export CLICOLOR=1
 export MANSECT=2:3:1:8:6:5:7:4:9
 export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics'
 
-[ -e /usr/share/mk/sys.mk ] || export CFLAGS=-O
-[ -d /usr/home ] && cd
+test -e /usr/share/mk/sys.mk || export CFLAGS=-O
+test -d /usr/home && cd
 
 export ENV=~/.shrc