#include #include #include #define NBWRITE (10000000) main(int argc, char *argv[]) { int fd; int i; if (argc != 3) { printf("USAGE = nfs nomFic chaineAEcrire\n"); exit(1); } fd = open(argv[1], O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR ); if (fd <0) { perror("Pb dans open"); exit(1); } for (i=0 ; i