5 lines
48 B
Bash
Executable file
5 lines
48 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for file in *; do
|
|
echo "$file"
|
|
done
|