Script to update wordpress apps

pyinfra
0x90.space 2023-12-07 21:55:15 +00:00
parent 5e5dfadd0b
commit 87969095f1
1 changed files with 14 additions and 0 deletions

14
update-app.sh Executable file
View File

@ -0,0 +1,14 @@
#!/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