-
-
Save julianobarbosa/03cd3d8d455c30f85413b2188f548e52 to your computer and use it in GitHub Desktop.
A simple way to upgrade all packages in an Open WRT distribution
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
#!/usr/bin/env sh | |
for p in $(opkg list-upgradable); do | |
if [ "$p" != "-" ]; then | |
if [ "$(echo ${p:0:1} | sed -e 's/[0-9]//')" != "" ]; then | |
echo "upgrading $p" | |
opkg upgrade $p | |
fi | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment