Files
hawk/t/fs-test.hawk
2025-10-02 00:54:00 +09:00

10 lines
170 B
Plaintext

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 "]";
}