您好我是UNIX新手,我必须从传入的csv文件中获取行数。我使用以下命令来计算。
wc -l filename.csv
考虑带有1条记录的文件iam在开始时得到一些带有*的文件,如果我发出相同的命令,我将得到的数量为0.这些文件是否在这里有任何意义,如果我得到一个带有ctrlm的文件(CR) )而不是NL如何获取该文件中的行数。给我一个解决问题的命令。提前谢谢。
答案 0 :(得分:28)
以下查询可帮助您获取计数
cat FILE_NAME | wc -l
答案 1 :(得分:4)
wc -l mytextfile
或仅输出行数:
wc -l< mytextfile
Usage: wc [OPTION]... [FILE]...
or: wc [OPTION]... --files0-from=F
Print newline, word, and byte counts for each FILE, and a total line if
more than one FILE is specified. With no FILE, or when FILE is -,
read standard input.
-c, --bytes print the byte counts
-m, --chars print the character counts
-l, --lines print the newline counts
--files0-from=F read input from the files specified by
NUL-terminated names in file F;
If F is - then read names from standard input
-L, --max-line-length print the length of the longest line
-w, --words print the word counts
--help display this help and exit
--version output version information and exit
答案 2 :(得分:2)
所有答案都是错误的。 CSV文件接受引号之间的换行符,但仍应视为同一行的一部分。如果您的计算机上装有Python或PHP,则可能会执行以下操作:
Python
//From stdin
cat *.csv | python -c "import csv; import sys; print(sum(1 for i in csv.reader(sys.stdin)))"
//From file name
python -c "import csv; print(sum(1 for i in csv.reader(open('csv.csv'))))"
PHP
//From stdin
cat *.csv | php -r 'for($i=0; fgetcsv(STDIN); $i++);echo "$i\n"
//From file name
php -r 'for($i=0, $fp=fopen("csv.csv", "r"); fgetcsv($fp); $i++);echo "$i\n";'
我还创建了一个脚本来模拟wc -l
:https://github.com/dhulke/CSVCount
答案 3 :(得分:1)
如果同一文件夹中有多个.csv
文件,请使用
cat *.csv | wc -l
获取当前目录中所有csv
文件中的总行数。所以,
-c
对字符进行计数,而-m
对字节进行计数(只要使用ASCII,就相同)。您还可以使用wc
来计算文件数,例如创建人:ls -l | wc -l