command to update all wordpress apps at once

missytake 2022-03-11 21:32:15 +01:00
parent 4f39f4a471
commit 3f2e6dc4e7
1 changed files with 14 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# Update apps
You can use the `update-app.sh` script to update an app, e.g. like this:
```
./update-app.sh akismet
```
To update all apps at once, use this command:
```
find ../wp-content/plugins/ -maxdepth 1 -type d | xargs -L1 basename | xargs -L1 ./update-app.sh
```