GNU/Linux >> Linux の 問題 >  >> Linux

Linux での logger コマンドの例

logger コマンドは、システム ログまたは syslog にメッセージを記録するために使用されます。コマンド ラインでメッセージ文字列をログに記録するか、ログに記録するメッセージを含むファイルを入力として指定できます。

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

logger コマンドの例

1. メッセージを標準エラー ログとシステム ログに記録するには

# logger -s "This is a test message" 

2. 指定したファイルにメッセージを記録する

# logger -f file "This is a test message"

3. 指定した優先度でメッセージをログに記録する

# logger -p 1 "This is a test message"

4. 指定したタグですべての行をマークする

# logger -t TAG "This is a test message"

5. メッセージをハイフンで開始できるようにする

# logger -- "This is a test message"


Linux
  1. Linux での sa コマンドの例

  2. Linux での ac コマンドの例

  3. Linux での df コマンドの例

  1. 7 Linux df コマンドの例

  2. 8 Linux TR コマンドの例

  3. Linux での du コマンドの例

  1. Linux での rm コマンドの例

  2. Linux での ps コマンドの例

  3. w Linux でのコマンド例