0
0
Files
42piscine/C_Piscine_Shell_01/git/ex03/count_files.sh
2021-08-15 23:30:40 +02:00

3 lines
62 B
Bash
Executable File

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