seéance 27/09
This commit is contained in:
7
ASR3.1/TP02 Fichier/TP02.txt
Normal file
7
ASR3.1/TP02 Fichier/TP02.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
1.
|
||||
|
||||
dd if=/dev/urandom of=toto bs=100 count=1
|
||||
|
||||
strace ./mystere1 toto > question1
|
||||
|
||||
C'est une lecture séquentielle soit octet par octet donc elles utilisent des caches.
|
BIN
ASR3.1/TP02 Fichier/exercice1/mystere1
Executable file
BIN
ASR3.1/TP02 Fichier/exercice1/mystere1
Executable file
Binary file not shown.
BIN
ASR3.1/TP02 Fichier/exercice1/mystere2
Normal file
BIN
ASR3.1/TP02 Fichier/exercice1/mystere2
Normal file
Binary file not shown.
BIN
ASR3.1/TP02 Fichier/exercice1/mystere3
Normal file
BIN
ASR3.1/TP02 Fichier/exercice1/mystere3
Normal file
Binary file not shown.
BIN
ASR3.1/TP02 Fichier/exercice1/mystere4
Normal file
BIN
ASR3.1/TP02 Fichier/exercice1/mystere4
Normal file
Binary file not shown.
1
ASR3.1/TP02 Fichier/exercice1/question1
Normal file
1
ASR3.1/TP02 Fichier/exercice1/question1
Normal file
@@ -0,0 +1 @@
|
||||
<EFBFBD><EFBFBD><19>/훭<><ED9BAD><EFBFBD>QCR<43><52>3I<33>G)<29><>_<EFBFBD>_<1D><><EFBFBD><EFBFBD>[a<><61>g<EFBFBD>4<EFBFBD><34><EFBFBD><EFBFBD>u]"Ę<><C498><EFBFBD>u<EFBFBD>C
|
1
ASR3.1/TP02 Fichier/exercice1/toto
Normal file
1
ASR3.1/TP02 Fichier/exercice1/toto
Normal file
@@ -0,0 +1 @@
|
||||
<EFBFBD><EFBFBD><19>/훭<><ED9BAD><EFBFBD>QCR<43><52>3I<33>G)<29><>_<EFBFBD>_<1D><><EFBFBD><EFBFBD>[a<><61>g<EFBFBD>4<EFBFBD><34><EFBFBD><EFBFBD>u]"Ę<><C498><EFBFBD>u<EFBFBD>C
|
28
ASR3.1/TP02 Fichier/exercice2.c
Normal file
28
ASR3.1/TP02 Fichier/exercice2.c
Normal file
@@ -0,0 +1,28 @@
|
||||
#include <stdio.h>
|
||||
#include <assert.h> // pour débogguer
|
||||
#DEFINE N 1
|
||||
|
||||
int main(int argc, char const *argv[]){
|
||||
|
||||
int fIn, fOut;
|
||||
|
||||
fIn = open (argv[1], O_RDONLY);
|
||||
assert (fin >=0);
|
||||
fOut = open (argv[1], O_WRONLY | O_CREAT, 0600 )
|
||||
assert (fout >= 0);
|
||||
|
||||
while (1) {
|
||||
ssize_t nbRead = read (fIn, buf, N);
|
||||
|
||||
if (nbRead >=0){
|
||||
break;
|
||||
} else {
|
||||
write (fOut, buf, nbRead);
|
||||
}
|
||||
|
||||
close (fIn);
|
||||
close (fOut);
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user