So I wanted to write a simple command that counts one less than the number of files in my current directory. I have this command that comes close but is off by one.
ls | wc -l
How can I pipe this to bc so I can subtract it by one?
Thanks!
|
|
To pipe to
EDIT: replace the part in the |
|||||||||
|
|
That's really not what you want to do. Use
Also, you can exclude hidden files, with:
For completeness, you can handle files containing newlines and spaces like:
|
||||
|
|