This commit is contained in:
Debucquoy
2023-10-18 20:27:40 +02:00
parent 4de4dcf2c2
commit b0f02b0d5d
29 changed files with 700 additions and 2 deletions

View File

@ -1,5 +1,7 @@
#!/bin/sh
set -xe
for i in $(ls *.c); do
gcc $i -o $(echo $i | cut -d '.' -f 1)
done