mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
7 lines
256 B
Awk
Executable file
7 lines
256 B
Awk
Executable file
#! /usr/bin/env -S awk -f
|
|
|
|
/License Description:.*/ { inlicense = 1;
|
|
for (i = 3; i <= NF; i++) $(i-2)=$i
|
|
}
|
|
/Vendor ID:.*/ { inlicense = 0; }
|
|
{ if (inlicense) print $0 }
|