Files
hpr_website/www/eps/hpr2816/hpr2816_awk14_ex2.awk

16 lines
155 B
Awk
Raw Permalink Normal View History

2025-10-28 18:39:57 +01:00
#!/usr/bin/awk -f
# Downloadable example 2 for GNU Awk Part 14
BEGIN {
cmd = "sort -u | nl"
}
NR > 1 {
print $1 | cmd
}
END {
close(cmd)
}