Files
hawk/t/fs-test.hawk

10 lines
170 B
Plaintext
Raw Permalink Normal View History

BEGIN {
## `FS` with a question mark(`?`) followed by four characters. the last three are equal.
FS="?,\"\"\"";
}
{
for (i = 0; i <= NF; i++) print i, "[" $i "]";
}