È meglio che tutte le righe terminino con EOL \n
nei file Unix. Puoi fare:
{ cat file; echo ''; } | wc -l
O questo awk:
awk 'END{print NR}' file
grep -c
restituisce il numero di righe corrispondenti. Basta usare una stringa vuota ""
come espressione corrispondente:
$ echo -n $'a\nb\nc' > 2or3.txt
$ cat 2or3.txt | wc -l
2
$ grep -c "" 2or3.txt
3