mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
2 lines
145 B
Bash
2 lines
145 B
Bash
#!/bin/sh
|
|
awk "BEGIN { i = 0; } { if (/^Package: $2/) i = 1; if (/^\s*\$/) i = 0; if (/$1:/ && i) print }" < debian/control | sed -e "s,^$1: ,,"
|