markdown [Linux命令] linux命令#linux #commands
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown [Linux命令] linux命令#linux #commands相关的知识,希望对你有一定的参考价值。
* ``` grep keyword /var/spool/cron/root | egrep -v ^# | grep -v ^$ | awk '{print $1,$2,$3,$4,$5,$8}' ```
* ``` cat netstat.log.5 | awk '$4 ~ /:80$/ {c++;print $5 | "sed 's/::ffff://' | sed 's/:.*$//'| sort | uniq -c | sort -n | tail -n 10"} END {print c}' ```
* ``` netstat -plantu | grep -c :1433 ```
* ``` ifconfig eth0 ```
* **Print last 20 lines from the error_log file** `tail -20 /var/log/httpd/error_log`
* **Get max number of client on apache configuration** ``` grep -i maxclients /etc/httpd/conf/httpd.conf ```
* ``` cat /etc/my.cnf | grep cache -i | grep -v ^# ```
* ``` grep "^|" queries-pre-restart.txt | awk '{ print $14 }' | sort | uniq -c | sort -nr ```
* `mkdir -p www/public_html` **Will make directory at nested level (it will create both directory)**
以上是关于markdown [Linux命令] linux命令#linux #commands的主要内容,如果未能解决你的问题,请参考以下文章
夺命雷公狗---linux NO:7 linux命令基本格式
夺命雷公狗---linux NO:11 linux的文本文件查看命令
linux 安装JDK后,所有命失效,求大神指导。
markdown Linux - 有用的Linux命令
markdown [linux命令]记录常见的linux命令#linxu #md
springboot项目命linux环境下命令启动