This website requires JavaScript.
Explore
Help
Register
Sign In
tonitch
/
cours_progra
Watch
1
Star
0
Fork
0
You've already forked cours_progra
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
b0f02b0d5d
cours_progra
/
bac2
/
os
/
chap1
/
build.sh
8 lines
88 B
Bash
Raw
Normal View
History
Unescape
Escape
.
2023-09-20 15:18:20 +02:00
#!/bin/sh
.
2023-10-18 20:27:40 +02:00
set
-xe
.
2023-09-20 15:18:20 +02:00
for
i in
$(
ls *.c
)
;
do
gcc
$i
-o
$(
echo
$i
|
cut -d
'.'
-f 1
)
done
Reference in New Issue
Copy Permalink