This file contains 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
#!/bin/sh | |
echo "🎉 👏 Congrats with the new project! 🎉 👏 | |
I'm setting up your fresh WordPress install for you." | |
# Make new folder | |
printf "Enter folder name of your choice -> " | |
read FOLDER | |
mkdir $FOLDER | |
cd $FOLDER |