Plan 9 from Bell Labs’s /n/sources/plan9/sys/src/cmd/dict/getneeds

Copyright © 2009 Alcatel-Lucent.
Distributed under the Lucent Public License version 1.02.
Download the Plan 9 distribution.


#!/bin/rc
for (x in spec tag aux status) {
	grep ' '^$x^' ' $1 > junk1
	sort +4 -5 +3n -4 junk1 > junk2
	awk '{if ($5 != prev) print $0; prev = $5}' junk2 > junk3
	sort -n +2 -3 junk3 > need$x
	rm junk*
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2009 Alcatel-Lucent. All Rights Reserved.
Comments to webmaster@plan9.bell-labs.com.