All Questions
1 question
26
votes
3
answers
2k
views
Byte count of "ls -l <random file>" versus that of "wc -c <random file>"
Is there any possible situation when
ls -l file.txt
is showing not the same number of bytes as
wc -c file.txt
In one script I found comparison of those two values. What could be the reason of ...