File: seq2rule.awk

package info (click to toggle)
gforth 0.7.0%2Bds1-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 9,044 kB
  • ctags: 1,796
  • sloc: ansic: 8,501; sh: 3,660; lisp: 1,779; makefile: 988; yacc: 186; sed: 141; lex: 102; awk: 21
file content (8 lines) | stat: -rw-r--r-- 81 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
BEGIN {
  FS="\t";
}
{
  name = $4;
  gsub(/ /,"_",name);
  print name" = "$4;
}