xsv icon indicating copy to clipboard operation
xsv copied to clipboard

Feature Request: `teip` like feature

Open ahrzb opened this issue 5 years ago • 0 comments

Teip is a command line utility to perform other commands only on a specific column of input data. Example(from teip docs):

$ echo "100 200 300 400" | teip -f 3 sed 's/./@/g'

Will perform sed only on the third column of input, the output will be:

100 200 @@@ 400

I wish there was a subcommand which did the same on csv columns, strip header, unescape strings, pass to subcommand, escape output again, put it back into csv.

ahrzb avatar Jan 15 '21 11:01 ahrzb