
tar:ai:3c72e
How do I use xsv on a compress .csv.tar.gz file without extracting it
$ tar -xOzf file.csv.tar.gz | xsv ${xsv_options}
try on your machine
This command uses the 'tar' utility to extract the compressed .csv.tar.gz file but streams it directly to xsv without saving the file to disk. Replace 'file.csv.tar.gz' with the actual file name and add any desired 'xsv' options to the command.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- How do I use xsv on a compress .csv.tar.gz file without extracting it?