Inspect the headers of a file
xsv headers path/to/file.csvCount the number of entries
xsv count path/to/file.csvGet an overview of the shape of entries
xsv stats path/to/file.csv | xsv tableSelect a few columns
xsv select column1,column2 path/to/file.csvShow 10 random entries
xsv sample 10 path/to/file.csvJoin a column from one file to another
xsv join --no-case column1 path/to/file1.csv column2 path/to/file2.csv | xsv table