Skip to content

Instantly share code, notes, and snippets.

View surfaceflinger's full-sized avatar
🍃
WOLNEKONOPIE

surfaceflinger

🍃
WOLNEKONOPIE
View GitHub Profile
@surfaceflinger
surfaceflinger / opkg_list_installed.sh
Created June 27, 2024 16:11 — forked from benok/opkg_list_installed.sh
[entware] List up manually installed packages
#!/bin/ash
list_pkgs() {
opkg list-installed | cut -f 1 -d " "
}
show_deps() {
opkg depends $1 | sed -e 1d -e 's/^\s*//'
}