Skip to content

Instantly share code, notes, and snippets.

@julianobarbosa
Forked from WebReflection/opkg-upgrade-all
Created December 15, 2016 16:37
Show Gist options
  • Save julianobarbosa/03cd3d8d455c30f85413b2188f548e52 to your computer and use it in GitHub Desktop.
Save julianobarbosa/03cd3d8d455c30f85413b2188f548e52 to your computer and use it in GitHub Desktop.
A simple way to upgrade all packages in an Open WRT distribution
#!/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