File: printf1.awk

package info (click to toggle)
goawk 1.29.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 10,560 kB
  • sloc: awk: 3,060; yacc: 198; fortran: 189; python: 131; sh: 58; makefile: 12
file content (19 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Tue May 25 16:36:16 IDT 1999
#
# Test cases based on email from Andreas Schwab, schwab@gnu.org

BEGIN {
	fmt[1] = "%8.5d";	data[1] = 100
	fmt[2] = "%#o";		data[2] = 0
	fmt[3] = "%#.1o";	data[3] = 0
	fmt[4] = "%#.0o";	data[4] = 0
	fmt[5] = "%#x";		data[5] = 0
	fmt[6] = "%.0d";	data[6] = 0
	fmt[7] = "%5.0d";	data[7] = 0

	for (i = 1; i <= 7; i++) {
		format = "%s, %d --- |" fmt[i] "|\n"
		printf(format, fmt[i], data[i], data[i])
	}

}