]> git.sev.monster Git - abchr.git/blob - apkgvers
apkgvers: replace grep/sed with awk
[abchr.git] / apkgvers
1 #!/bin/sh
2 if ! which column >/dev/null 2>&1; then echo need column command >&2; exit 1; fi
3 awk 'match($0, /pkgver="?([^" ;]*)/, m) {gsub("/APKBUILD$", "", FILENAME); print FILENAME, m[1]}' */APKBUILD | sort | column -tNname,version -R1
This page took 0.037609 seconds and 4 git commands to generate.