Skip to content

Instantly share code, notes, and snippets.

@WebReflection
Created August 4, 2015 21:26
Show Gist options
  • Save WebReflection/3336d35300886667408a to your computer and use it in GitHub Desktop.
Save WebReflection/3336d35300886667408a 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
@WebReflection
Copy link
Author

don't forget to chmod +x opkg-upgrade-all or use sh to run it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment