]> git.llucax.com Git - software/dgc/dgcbench.git/blob - tics.awk
Create time/pause sub-directories in ./build
[software/dgc/dgcbench.git] / tics.awk
1 #!/usr/bin/env awk -F, -f
2
3 BEGIN {
4         ORS = "" # don't use a \n after each print
5         print "'' 0"
6 }
7
8 NR > 1 { # skip the input CVS header
9         print ", '" $1 "' " (NR-2)
10 }
11