I have a very simple question that I can\'t answer. In shell, what would this command do:
test -d $VIRTUAL_ENV || virtualenv $VIRTUAL_ENV
It se
It tests if the directory $VIRTUAL_ENV exists and otherwise creates it using virtualenv
$VIRTUAL_ENV
virtualenv