This commit is contained in:
Debucquoy
2023-09-20 15:18:20 +02:00
parent 00d0cdfaf3
commit 4fd7542f03
228 changed files with 351 additions and 12 deletions

5
bac2/os/chap1/build.sh Executable file
View File

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

1
bac2/os/chap1/ex1.c Normal file
View File

@ -0,0 +1 @@