摘要:
一. 修改软件名称和版本号 防止黑客攻击 [root@localhost core]# pwd /usr/local/src/nginx-1.8.1/src/core [root@localhost core]# vim nginx.h #define nginx_version 8008001 # 阅读全文
摘要:
# chkconfig: 2345 99 20<br>2345表示系统运行级别是2,3,4或者5时都启动此服务,<br>99,是启动的优先级,<br>20, 是关闭的优先级 #description: nginx-server #!/bin/bash nginx=/usr/local/nginx/s 阅读全文
摘要:
[root@master ~]# awk '{ip[$1]++} END{for (i in ip) print i,ip[i]}' /var/log/httpd/access_log 192.168.116.1 6 192.168.116.128 100 $1是从日志中获取IP,将IP作为下标 存 阅读全文
摘要:
#!/bin/bash num=$[RANDOM%100+1] #随机获取1-100以内的数字 cishu=0 #初始变量用来计数 while true do echo "$num" read -ep "计算机生成了一个1-100的随机数,你猜: " nun #输入猜的数字 let cishu+=1 阅读全文