diff --git a/ex03/count_files.sh b/ex03/count_files.sh index a113322..7dd64d2 100755 --- a/ex03/count_files.sh +++ b/ex03/count_files.sh @@ -1,3 +1,3 @@ #!/bin/sh -find . | wc -l +find . -type f -o -type d | wc -l