![Latest Version] [![Documentation]] ![License]

A command line utility to copy UNIX domain socket datagrams from one socket to two other sockets.

Features:

Example usage

Forward copy of syslog messages to remote log server.

```bash

Save syslog messages in a log file

socklog unix /var/run/syslog-local > /var/log/syslog &

Forward syslog messages to remote log server

socklog unix -R /var/run/syslog-forward | nc -t prod.store.whatclinic.net 514 &

Copy syslog messages for local storage and forwarding

umask 0000 socktee /dev/log /var/run/syslog-local /var/run/syslog-forward &

Log a message

logger hello world ```