Created
May 7, 2018 18:30
-
-
Save xtornasol512/e3e6df7850e1c8d9b82bab2d1c5ea626 to your computer and use it in GitHub Desktop.
Console tips for Bash
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
#!/usr/bin/env bash | |
if [ -d "./chuko" ]; then | |
echo "WOlolo" | |
else | |
echo "wtf!?" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1st Script
If exists folder then print wololo else wtf!?