commit
b3e11ebf00
@ -0,0 +1,5 @@
|
|||||||
|
# Ejercicio1 Pipe
|
||||||
|
~~~
|
||||||
|
Escribo el saludo en el fichero...
|
||||||
|
Contenido del Fichero: Saludos peña!!!
|
||||||
|
~~~
|
@ -0,0 +1,35 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
|
void main(void)
|
||||||
|
{
|
||||||
|
char saludo[] = "Saludos peña!!!\n";
|
||||||
|
char buffer[10];
|
||||||
|
int fd, bytesleidos;
|
||||||
|
|
||||||
|
fd = open("texto.txt", 1); // abrimos para escritura
|
||||||
|
if (fd == -1)
|
||||||
|
{
|
||||||
|
printf("Algo salió mal\n");
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("Escribo el saludo en el fichero...\n");
|
||||||
|
write(fd, saludo, strlen(saludo));
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
fd = open("texto.txt", 0); // abrimos para lectura
|
||||||
|
printf("Contenido del Fichero: ");
|
||||||
|
|
||||||
|
bytesleidos = read(fd, buffer, 1);
|
||||||
|
while (bytesleidos != 0)
|
||||||
|
{
|
||||||
|
printf("%s", buffer);
|
||||||
|
bytesleidos = read(fd, buffer, 1);
|
||||||
|
}
|
||||||
|
close(fd);
|
||||||
|
}
|
Loading…
Reference in new issue