Move under www to ease rsync
This commit is contained in:
12
www/eps/hpr2526/hpr2526_awk10_ex2.awk
Executable file
12
www/eps/hpr2526/hpr2526_awk10_ex2.awk
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/awk -f
|
||||
{
|
||||
lines[NR] = $0
|
||||
}
|
||||
|
||||
END{
|
||||
for (i in lines) {
|
||||
split(lines[i],flds,/ *, */,seps)
|
||||
for (j in flds)
|
||||
printf "|%s| (%s)\n",flds[j],seps[j]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user