Last active 32 minutes ago
from https://gist.github.com/luisbandalap/2e17ba58e4f9f18d95704de24e17bc83
0
0
1
| 1 | #!/bin/ash |
| 2 | |
| 3 | list_pkgs() { |
| 4 | opkg list-installed | cut -f 1 -d " " |
| 5 | } |
| 6 | |
| 7 | show_deps() { |
| 8 | opkg depends $1 | sed -e 1d -e 's/^\s*//' |
| 9 | } |