先从别的地方抄过来全部的解释,如下:
**options (选项):** -d, --udp 使用数据报(UDP)而不是使用默认的流连接(TCP) -i, --id 逐行记录每一次logger的进程ID -f, --file file_name 记录特定的文件 -h, --help 显示帮助文本并退出 -n, --server 写入指定的远程syslog服务器,使用UDP代替内装式syslog的例程 -s, --stderr 输出标准错误到系统日志。 -t, --tag tag 指定标记记录 -u, --socket socket 写入指定的socket,而不是到内置系统日志例程。 -V, --version 显示版本信息并退出 -P, --port port_num 使用指定的UDP端口。默认的端口号是514 -p, --priority priority_level 指定输入消息日志级别,优先级可以是数字或者指定为 " facility.level" 的格式。
下面开始逐一实验每个参数的用法。
-d不清楚怎么使用
-i,记录进程id,随便写个小列子,代码如下:
#!/bin/bash logger -i "this is a test --i" logger "this is a test --" sleep 100
在/var/log/messages文件中,会有如下记录:
2018-03-27T10:54:17.838653+08:00|notice|root[9433]|this is a test --i 2018-03-27T10:54:17.839606+08:00|notice|root[-]|this is a test --
-f选项没发现什么特别之处。
-n太复杂,暂时还没有用到。
-s,输出标准错误,并且将信息打印到系统日志中。
linux-xdYUnA:/home/test/shell # logger -i -s "abc"
root[5105]: abc
在message日志中记录如下:
2018-03-27T11:06:47.705041+08:00|notice|root[5105]|abc
注意:文字格式中的参数不要使用引号标记,二够造器函数的参数则要使用引号标记。如果你要记录更多的错误日志或者自己要记录一些系统级日志,您可以参看php的日志记录函数error_log,记录更多的日志。现在要求我们开发的记录日志的组件,除了要支持数据库记录和文本文件记录两种方式外,我们还需要在不同的应用环境中增加一些额外的功能linux命令,比如需要记录日志信息的错误严重级别,需要记录日志信息的优先级别,还有日志信息的扩展属性等功能。
linux-xdYUnA:/home/test/shell # logger -i -t xingmuxin -s "this is a test" xingmuxin[23054]: this is a test linux-xdYUnA:/home/test/shell # logger -i -t "xingmuxin" -s "this is a test" xingmuxin[25200]: this is a test
linux-xdYUnA:/home/test/shell # logger -i -s "this a test"
root[16997]: this a test
上一个教程:Linux命令详解之—less命令
下一个教程:Linux crontab命令详解