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