Il comando logger viene utilizzato per registrare i messaggi nel registro di sistema o nel syslog. È possibile registrare una stringa di messaggi sulla riga di comando o fornire un file come input che può contenere il messaggio da registrare.
Per visualizzare le opzioni disponibili per il comando logger:
# logger --help Usage: logger [options] [message] Options: -T, --tcp use TCP only -d, --udp use UDP only -i, --id log the process ID too -f, --file [file] log the contents of this file -h, --help display this help text and exit -S, --size [num] maximum size for a single message (default 1024) -n, --server [name] write to this remote syslog server -P, --port [port] use this port for UDP or TCP connection -p, --priority [prio] mark given message with this priority -s, --stderr output message to standard error as well -t, --tag [tag] mark every line with this tag -u, --socket [socket] write to this Unix socket -V, --version output version information and exit
Esempi di comandi logger
1. Per registrare il messaggio negli errori standard e nei registri di sistema
# logger -s "This is a test message"
2. Per accedere al messaggio nel file specificato
# logger -f file "This is a test message"
3. Per registrare il messaggio con la priorità specificata
# logger -p 1 "This is a test message"
4. Per contrassegnare ogni riga con il tag specificato
# logger -t TAG "This is a test message"
5. Per consentire al messaggio di iniziare con un trattino
# logger -- "This is a test message"