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