You are not logged in.
In the expression below, what is the bash equivalent that $?TERM condition?
if ( $?TERM == 1) then
...
endif
... googling on $?TERM is impossible by the way!
CPU-optimized Linux-ck packages @ Repo-ck • AUR packages • Zsh and other configs
Offline
if [[ $TERM ]]; then
...
fi
which is the same as [[ -n "$TERM" ]]
Last edited by Procyon (2013-03-10 08:05:43)
Offline