6 lines
79 B
Bash
6 lines
79 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in $(ls *.c); do
|
||
|
gcc $i -o $(echo $i | cut -d '.' -f 1)
|
||
|
done
|