What I need to do is parse a string of the following form
-option optionArgument, --alternativeNotation Some text, nothing of interest...
I set the FS to
BEGIN {
FS = ",?\ +"
}
but it didn't work... it should break on every random number of blanks (at least one), preceeded by a comma (optional). Any ideas?
Thx in advance,
Oliver