summaryrefslogtreecommitdiff
path: root/doc/createAvailableCommandlineCommandsListView.awk
blob: f51dda52635966066688c2881c6b931260063d69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BEGIN {
	# Switch field separator from space to tabulator.
	FS="\t"
}

{
	print "'''"
	print "[[cmd-" $1 "]]"
	print "****"
	print "*Syntax:* <<cmd-" $1 "," $1 ">>", $2, "+"
	sub("\"\"", "n/a", $3)
	print "*Example:*", $4, "+"
	print "****"
	print "\n" $3, "+"
	print "\n\n"
}