0
0
Files
42piscine/Shell_01/git_old/ex03/count_files.sh
Guy Baconniere d30270c485 commit
2021-08-20 10:02:38 +02:00

3 lines
62 B
Bash
Executable File

#!/bin/sh
find . \( -type f -o -type d \) | wc -l | tr -d ' '