Files
hawk/t/fs-test.hawk
hyung-hwan 16b1739ebc
All checks were successful
continuous-integration/drone/push Build is passing
enhanced a special form FS to affect record reading in bytes
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 "]";
}