
Linux
文章平均质量分 83
ouhi2008
这个作者很懒,什么都没留下…
展开
-
Linux出现java.net.SocketException: Too many open files解决方法
[root@fwang5stash ~]# ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) ...原创 2013-04-08 13:12:41 · 143 阅读 · 0 评论 -
crontab使用心得
1.查看crontab说明 [fwang5@szotautotest03 ~]$ more /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/ # For details see man 4 crontabs # Example of job definitio...原创 2013-04-08 14:40:17 · 153 阅读 · 0 评论 -
AWK Tutorial
1.row/column value$0 whole row$1..$n one columnawk '{print $1, $4}' netstat.txt awk '{printf "%-8s %-8s %-8s %-18s %-22s %-15s\n",$1,$2,$3,$4,$5,$6}' netstat.txt 2.filter,comparison operator: ...原创 2013-07-02 15:04:25 · 129 阅读 · 0 评论 -
sed Tutorial
1.s option $ cat pets.txt This is my cat my cat's name is betty This is my dog my dog's name is frank This is my fish my fish's name is george This is my goat my goat'...原创 2013-07-02 17:44:05 · 162 阅读 · 0 评论