File: sort-protos

package info (click to toggle)
egcs64 1%3A19980921.1-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,184 kB
  • ctags: 18,081
  • sloc: ansic: 243,395; sh: 12,432; makefile: 3,636; yacc: 2,639; asm: 856; sed: 186; perl: 18
file content (9 lines) | stat: -rwxr-xr-x 293 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Sort the sys-protos.h file in its usual order.
# Invoke as `sort-protos sys-protos.h'.

input=$1

sed 's/\(.*[ 	\*]\)\([a-zA-Z0-9_][a-zA-Z0-9_]*\)[ 	]*\(([^\*].*\)$/\2%\1%\3/' $input | sort -u | awk -F% '{printf "%-30.30s%s%s\n", $2, $1, $3}' > tmp.$input

mv -f tmp.$input $input