@end multitable
The following @command{awk} script will use tab character as input and output
-field seperator (instead of spaces and tabs):
+field separator (instead of spaces and tabs):
@example
$ cat tabs.awk
break;
case ' ':
case '\t':
- /* Space,tab,dash are undocumented options. Attempt to detect
+ /* These are undocumented options. Attempt to detect
incorrect shebang usage with extraneous space, e.g.:
#!/usr/bin/env -i command
In which case argv[1] == "-i command". */
['d11', q[-S'echo FOO \\#BAR'], {OUT=>"FOO #BAR"}],
['d12', q[-S'echo FOO#BAR'], {OUT=>"FOO#BAR"}],
- # Test underscore as space/seperator in double/single/no quotes
+ # Test underscore as space/separator in double/single/no quotes
['s1', q[-S'printf x%sx\\n "A\\_B"'], {OUT=>"xA Bx"}],
['s2', q[-S"printf x%sx\\n 'A\\_B'"], {OUT=>"xA\\_Bx"}],
['s3', q[-S"printf x%sx\\n A\\_B"], {OUT=>"xAx\nxBx"}],