
Linux
雷声科技
这个作者很懒,什么都没留下…
展开
-
How to configure a SMTP server in Red Hat Enterprise Linux
The primary purpose of SMTP is to transfer email between mail servers. However, it is critical for email clients as well. To send email, the client sends the message to an outgoing mail server, which in turn contacts the destination mail server for deliver原创 2017-04-16 16:43:24 · 642 阅读 · 0 评论 -
How to become a qualified dev&ops
How to become a good webmaster? Is there any free tools that can be used for monitoring the status of your website?原创 2017-03-26 10:40:56 · 363 阅读 · 0 评论 -
awk编程
awk是Linux 系统下的一个强大的文本处理工具,常常和sed、grep一起配合使用。主要功能就是将文本依行读取,然后每行按照一定的分隔符隔开放进一个array里面并提供了函数对这些元素进行一定的处理分析。在awk中,文件的每一行由域分隔符分开,每一项称为一个域。在不指明-F域分隔符的情况下,默认的域分隔符是空格。三种方式调用awk命令行方式$ awk [-F field-separator]原创 2017-10-06 10:05:34 · 223 阅读 · 0 评论 -
Shell脚本里面 $#, $@的含义
如下表格所示: 变量名 含义 应用实例 $$ Shell本身的PID(ProcessID) $! Shell最后运行的后台Process的PID $? 最后运行的命令的结束代码(返回值) $- 使用Set命令设定的Flag一览 $* 所有参数列表。如$*用”括起来的情况、以”$1” “$2” … “$n”的形式输出所有参数原创 2017-10-10 16:58:00 · 641 阅读 · 0 评论 -
Rsync简介
一、简介1、认识Rsync(remote synchronize)是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件。Rsync使用所谓的“Rsync算法”来使本地和远 程两个主机之间的文件达到同步,这个算法只传送两个文件的不同部分,而不是每次都整份传送,因此速度相当快Rsync支持大多数的类Unix系统,无论是Linux、Solaris还是BSD上都经过了良好的测试...转载 2018-11-24 17:36:16 · 282 阅读 · 0 评论