File: list-inputattach-modes

package info (click to toggle)
joystick 20051019-12
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 696 kB
  • ctags: 658
  • sloc: ansic: 3,022; awk: 157; sh: 143; makefile: 27
file content (12 lines) | stat: -rwxr-xr-x 299 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/awk -f

/^  --.*-/ {
    print ".TP";
    print ".BR \\-" substr($2, 2) " \", \" " "\\-\\-" substr($1, 3);
#    print "\\fB\\-" substr($2, 2) "\\fR, \\fB\\-\\-" substr($1, 3) "\\fR";
    remainder = "";
    for (i = 3; i <= NF; i++)
	remainder = remainder $i " ";
    print remainder;
}