Skip to content

Instantly share code, notes, and snippets.

@alvalea
alvalea / main.c
Created December 17, 2020 12:07
C redirect stdout and stderr to syslog using logger command
#include <stdio.h>
#include <unistd.h>
int main()
{
// Pipe open logger command in another process (sh -c logger)
FILE *fl;
fl = popen("logger","w");
if(fl == NULL)
return 1;