Make count_files.sh only list regular files and dirs

This commit is contained in:
Timo Schmidt 2023-03-15 18:48:41 +01:00
parent a86d253dad
commit 74d0c6955e
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
find . | wc -l
find . -type f -o -type d | wc -l