Created
July 24, 2018 23:07
-
-
Save heldervilela/907d61d6ff7fd4b8b95b0c266f9d9497 to your computer and use it in GitHub Desktop.
WordPress plugin build script
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/bash | |
printf "Plugin name: " | |
read NAME | |
printf "Destination folder: " | |
read FOLDER | |
printf "Include Grunt support (y/n): " | |
read GRUNT | |
printf "Initialise new git repo (y/n): " | |
read NEWREPO | |
DEFAULT_NAME="WordPress Plugin Template" | |
DEFAULT_CLASS=${DEFAULT_NAME// /_} | |
DEFAULT_TOKEN=$( tr '[A-Z]' '[a-z]' <<< $DEFAULT_CLASS) | |
DEFAULT_SLUG=${DEFAULT_TOKEN//_/-} | |
CLASS=${NAME// /_} | |
TOKEN=$( tr '[A-Z]' '[a-z]' <<< $CLASS) | |
SLUG=${TOKEN//_/-} | |
git clone https://github.com/hlashbrooke/$DEFAULT_SLUG.git $FOLDER/$SLUG | |
echo "Removing git files..." | |
mkdir -p $FOLDER | |
cd $FOLDER/$SLUG | |
rm -rf .git | |
rm README.md | |
rm build-plugin.sh | |
rm changelog.txt | |
if [ "$GRUNT" == "n" ]; then | |
rm Gruntfile.js | |
rm package.json | |
fi | |
echo "Updating plugin files..." | |
mv $DEFAULT_SLUG.php $SLUG.php | |
cp $SLUG.php $SLUG.tmp | |
sed "s/$DEFAULT_NAME/$NAME/g" $SLUG.tmp > $SLUG.php | |
rm $SLUG.tmp | |
cp $SLUG.php $SLUG.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" $SLUG.tmp > $SLUG.php | |
rm $SLUG.tmp | |
cp $SLUG.php $SLUG.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" $SLUG.tmp > $SLUG.php | |
rm $SLUG.tmp | |
cp $SLUG.php $SLUG.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" $SLUG.tmp > $SLUG.php | |
rm $SLUG.tmp | |
cp readme.txt readme.tmp | |
sed "s/$DEFAULT_NAME/$NAME/g" readme.tmp > readme.txt | |
rm readme.tmp | |
cd lang | |
mv $DEFAULT_SLUG.pot $SLUG.pot | |
cp $SLUG.pot $SLUG.tmp | |
sed "s/$DEFAULT_NAME/$NAME/g" $SLUG.tmp > $SLUG.pot | |
rm $SLUG.tmp | |
cp $SLUG.pot $SLUG.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" $SLUG.tmp > $SLUG.pot | |
rm $SLUG.tmp | |
cp $SLUG.pot $SLUG.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" $SLUG.tmp > $SLUG.pot | |
rm $SLUG.tmp | |
cp $SLUG.pot $SLUG.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" $SLUG.tmp > $SLUG.pot | |
rm $SLUG.tmp | |
cd ../includes | |
mv class-$DEFAULT_SLUG.php class-$SLUG.php | |
cp class-$SLUG.php class-$SLUG.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" class-$SLUG.tmp > class-$SLUG.php | |
rm class-$SLUG.tmp | |
cp class-$SLUG.php class-$SLUG.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" class-$SLUG.tmp > class-$SLUG.php | |
rm class-$SLUG.tmp | |
cp class-$SLUG.php class-$SLUG.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" class-$SLUG.tmp > class-$SLUG.php | |
rm class-$SLUG.tmp | |
mv class-$DEFAULT_SLUG-settings.php class-$SLUG-settings.php | |
cp class-$SLUG-settings.php class-$SLUG-settings.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" class-$SLUG-settings.tmp > class-$SLUG-settings.php | |
rm class-$SLUG-settings.tmp | |
cp class-$SLUG-settings.php class-$SLUG-settings.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" class-$SLUG-settings.tmp > class-$SLUG-settings.php | |
rm class-$SLUG-settings.tmp | |
cp class-$SLUG-settings.php class-$SLUG-settings.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" class-$SLUG-settings.tmp > class-$SLUG-settings.php | |
rm class-$SLUG-settings.tmp | |
cd lib | |
mv class-$DEFAULT_SLUG-post-type.php class-$SLUG-post-type.php | |
cp class-$SLUG-post-type.php class-$SLUG-post-type.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" class-$SLUG-post-type.tmp > class-$SLUG-post-type.php | |
rm class-$SLUG-post-type.tmp | |
cp class-$SLUG-post-type.php class-$SLUG-post-type.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" class-$SLUG-post-type.tmp > class-$SLUG-post-type.php | |
rm class-$SLUG-post-type.tmp | |
cp class-$SLUG-post-type.php class-$SLUG-post-type.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" class-$SLUG-post-type.tmp > class-$SLUG-post-type.php | |
rm class-$SLUG-post-type.tmp | |
mv class-$DEFAULT_SLUG-taxonomy.php class-$SLUG-taxonomy.php | |
cp class-$SLUG-taxonomy.php class-$SLUG-taxonomy.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" class-$SLUG-taxonomy.tmp > class-$SLUG-taxonomy.php | |
rm class-$SLUG-taxonomy.tmp | |
cp class-$SLUG-taxonomy.php class-$SLUG-taxonomy.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" class-$SLUG-taxonomy.tmp > class-$SLUG-taxonomy.php | |
rm class-$SLUG-taxonomy.tmp | |
cp class-$SLUG-taxonomy.php class-$SLUG-taxonomy.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" class-$SLUG-taxonomy.tmp > class-$SLUG-taxonomy.php | |
rm class-$SLUG-taxonomy.tmp | |
mv class-$DEFAULT_SLUG-admin-api.php class-$SLUG-admin-api.php | |
cp class-$SLUG-admin-api.php class-$SLUG-admin-api.tmp | |
sed "s/$DEFAULT_CLASS/$CLASS/g" class-$SLUG-admin-api.tmp > class-$SLUG-admin-api.php | |
rm class-$SLUG-admin-api.tmp | |
cp class-$SLUG-admin-api.php class-$SLUG-admin-api.tmp | |
sed "s/$DEFAULT_TOKEN/$TOKEN/g" class-$SLUG-admin-api.tmp > class-$SLUG-admin-api.php | |
rm class-$SLUG-admin-api.tmp | |
cp class-$SLUG-admin-api.php class-$SLUG-admin-api.tmp | |
sed "s/$DEFAULT_SLUG/$SLUG/g" class-$SLUG-admin-api.tmp > class-$SLUG-admin-api.php | |
rm class-$SLUG-admin-api.tmp | |
if [ "$NEWREPO" == "y" ]; then | |
echo "Initialising new git repo..." | |
cd ../.. | |
git init | |
fi | |
echo "Complete!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment