mirror of
https://github.com/ellysh/bash-programming-from-scratch.git
synced 2026-01-26 07:43:42 +00:00
8 lines
103 B
Bash
8 lines
103 B
Bash
#!/bin/bash
|
|
|
|
find . -maxdepth 1 -print0 |
|
|
while IFS= read -r -d '' filename
|
|
do
|
|
file "$filename"
|
|
done
|