write (2) Linux Manual Page
write – write to a file descriptor Synopsis#include <unistd.h> ssize_t write(int fd, const void *buf, size_t count); Descriptionwrite() writes up to count bytes from the buffer starting at buf to the file referred to by the file descriptor fd. The number of bytes written may be less than count if, for example, there is insufficient…
