
linux
linux
qq_28613081
这个作者很懒,什么都没留下…
展开
-
linux-2.查看系统性能命令
uptime dmesg | tail vmstat 1 mpstat -P ALL 1 pidstat 1 iostat -xz 1 free -m sar -n DEV 1 sar -n TCP,ETCP 1 top grep sed ps -ef | grep pstree -a | grep php原创 2020-05-14 09:40:58 · 147 阅读 · 0 评论 -
linux uniq命令详解
Linux uniq 命令用于检查及删除文本文件中重复出现的行列,一般与 sort 命令结合使用。 uniq 可检查文本文件中重复出现的行列。 语法 uniq [-cdu][-f<栏位>][-s<字符位置>][-w<字符位置>][--help][--version][输入文件][输出文件] 参数: -c或--count 在每列旁边显示该行重复出现的次...转载 2020-05-07 17:43:40 · 141 阅读 · 0 评论 -
linux-1.常用命令整理
cat file1 file2 ... | command <> file1_in.txt_or_file1_out.txt general syntax for text manipulation using PIPE, STDIN and STDOUT cat file1 | command( sed, grep, awk, grep, etc...) > result.t...原创 2020-05-07 16:56:51 · 108 阅读 · 0 评论