Closed MartinPacker closed 4 years ago
Which file format are we talking about? .csv? What about # instead?
I'm talking about the command line input. There doesn't seem to be a way in bash to comment out a line.
# is a comment in sh, bash, csh, zsh , etc.
But not in the middle of something like this:
#!/usr/bin/env bash
filterCSV \
all FFFFFF \
stats markdown \
10.220.60. nc \
10.220.61. nc \
10.227.13. nc \
107.216.33. nc \
10.227.16. nc \
10.227.244. nc \
180.14.229. nc \
< DDFTOPDI.csv \
> fixed-DDFTOPDI.csv
The idea is to be able to effectively comment out any of the lines in the middle.
Implemented as //
in v1.9.
Commenting out eg "ABCD nc" would be nice:
// ABCD nc \\
Which would require us to deviate from the 2 parms per action. So NOT a starter bug.