Counting lines of a text file
To count lines of one or many files on the shell I use wc
(Wordcount). If you want to count all lines of all CSV files in a dictionary, just type:
wc -l *.csv
To count lines of one or many files on the shell I use wc
(Wordcount). If you want to count all lines of all CSV files in a dictionary, just type:
wc -l *.csv