Last active
August 19, 2016 08:40
-
-
Save bigbruno/27e1a05684f0476d5314bb6c551f1f85 to your computer and use it in GitHub Desktop.
Arquivo exite -e
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Confere se o arquivo, diretório, link, ou arquivo especial existe | |
if [ -e "/bin/bash" ]; then | |
echo "O arquivo ou diretório não existe" | |
else | |
echo "O arquivo ou diretório existe" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment