I guess I\'m not clear on how to do \"and\" tests. I wanted to make sure an argument existed which was working well with [ -e $VAR ], but it turns out that was also
[ -e $VAR ]
if [ ! -z "$var" ] && [ -e "$var" ]; then # something ... fi