You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int f = open(args[1], O_RDONLY); // arquivo aberto para leitura do conteúdo
char buf[1024]; // array guardando o conteúdo de 1024 bytes em 1024 bytes
int s; // variável com a quantidade de bytes lidos
while((s = read(f, buf, 1024)) != 0) write(1, buf, s); // enquanto tiver bytes para serem lidos, escreva no arquivo de saída (1) o que estiver em 'buf', a quantidade de bytes de 's'