RosettaCodeData/Task/Loops-Foreach/UNIX-Shell/loops-foreach-1.sh

4 lines
53 B
Bash

for file in *.sh; do
echo "filename is $file"
done