shrc: remove stderr redirect from command calls
This commit is contained in:
parent
35002770b8
commit
17bccfb1b0
@ -29,7 +29,7 @@ alias ll="ls -lF"
|
|||||||
alias mv="mv -i"
|
alias mv="mv -i"
|
||||||
alias p="$PAGER"
|
alias p="$PAGER"
|
||||||
|
|
||||||
if command -v nvi >/dev/null 2>&1; then
|
if command -v nvi >/dev/null; then
|
||||||
alias vi=nvi
|
alias vi=nvi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ if [ -d ~/local/libdata/perl5/site_perl ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
PS1=
|
PS1=
|
||||||
if command -v git >/dev/null 2>&1 && [ -f ~/code/lucas/env/utils/shgit ]; then
|
if command -v git >/dev/null && [ -f ~/code/lucas/env/utils/shgit ]; then
|
||||||
. ~/code/lucas/env/utils/shgit
|
. ~/code/lucas/env/utils/shgit
|
||||||
export PS1='$(shgit)'
|
export PS1='$(shgit)'
|
||||||
fi
|
fi
|
||||||
@ -68,7 +68,7 @@ Linux)
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if command -v nncp-call >/dev/null 2>&1; then
|
if command -v nncp-call >/dev/null; then
|
||||||
NNCPCFG=~/.config/nncp
|
NNCPCFG=~/.config/nncp
|
||||||
export NNCPCFG
|
export NNCPCFG
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user