I want to count all the spaces from my file in Unix and I have tried the following command:
grep " " file1 | wc
It is giving me the following output:
3 6 34
There are three spaces in my file so is it accurate command and further more how can I filter this to get exactly the spaces so only '3' should come as output and also how can I remove it
Use
tr
to remove everything but the spaces, thenwc -c
to count the remaining (space) characters: