stewartdwest
Programmer
cut -f 2 -d "," myfile.txt works great to cut the second column from a comma delimited text file.
What would the syntax be for specifying a delimiter with the value x"b8"
cut -f 2 -d x"b8" myfile.txt produces
cut: "invalid delimiter"
What would the syntax be for specifying a delimiter with the value x"b8"
cut -f 2 -d x"b8" myfile.txt produces
cut: "invalid delimiter"