6 lines
62 B
Bash
Executable File
6 lines
62 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for f in *.c ; do
|
|
echo "${f/.c/}"
|
|
done
|