wordpress/update-app.sh

15 lines
195 B
Bash
Raw Normal View History

2023-12-07 21:55:15 +00:00
#!/bin/sh
if [ $# -eq 0 ]
then
echo "usage: ./update-app.sh \$app"
exit 0
fi
APP=$1
cd ~/wp-content/plugins
wget https://downloads.wordpress.org/plugin/$APP.zip
rm -rf $APP
unzip $APP.zip