#!/bin/bash#SPEED=`/bin/bash/etc/zabbix/script/flow.sh|cut-d‘.‘-f1`SPEED=`/bin/bash/root/flow.sh|cut-d‘.‘-f1`[-z$SPEED]&&SPEED=1EXIST=`iptables-n-v-L|grepCC-FLOW|wc-l`if[$SPEED-gt1250];thenIP=`netstat-antup|grepESTABLISHED|awk‘{print$5}‘|grep-o"\([0..
分类:
其他好文 时间:
2016-04-21 15:24:32
阅读次数:
433
tc主脚本:#!/bin/bash#./root/tc_functionsNUM=2DEV=eth0init_tc$NUMwhile:;do#IP=`netstat-antup|grepESTABLISHED|grep80|cut-d":"-f8`IP=`netstat-antup|grepESTABLISHED|grep80|awk‘{print$5}‘|grep-o"\([0-9]\{1,3\}\.\)\{1,3\}[0-9]\{1,3\}"|sort-rn|uniq-c|awk‘{print$2..
分类:
其他好文 时间:
2016-04-21 15:22:35
阅读次数:
152
linux产生随机的方法取8位数字的方法[root@masterscripts]#echo$RANDOM
12465[root@masterscripts]#echo$((RANDOM+10000000))
10023190[root@masterscripts]#echo$RANDOM|md5sum|cut-c1-8
ae74cedb[root@masterscripts]#uuidgen|md5sum|cut-c1-8
fdfca8ec[root@masterscripts]#..
分类:
系统相关 时间:
2016-04-20 23:56:48
阅读次数:
293
经常要查看Linux服务器的CPU、内存、操作系统版本等信息,总结一下常用的命令1.查看CPU型号(32个逻辑CPU)[root@nginx~]#cat/proc/cpuinfo|grep"name"|cut-f2-d:|uniq-c32Intel(R)Xeon(R)CPUE5-4620v2@2.60GHz2.查看物理CPU个数(两个16核CPU)[root@nginx~]#cat/proc/cpuinfo..
分类:
其他好文 时间:
2016-04-20 18:23:09
阅读次数:
230
命令:ps -ef|grep keyword|grep -v grep|cut -c 9-15|xargs kill -9 批量杀死包含关键字“keyword”的进程。 "ps -ef" ——查看所有进程 "grep keyword" ——列出所有含有关键字"./amplxe-gui"的进程 "gr ...
分类:
系统相关 时间:
2016-04-20 11:21:51
阅读次数:
1198
linux产生随机的方法取8位数字的方法[root@masterscripts]#echo$RANDOM
12465[root@masterscripts]#echo$((RANDOM+10000000))
10023190[root@masterscripts]#echo$RANDOM|md5sum|cut-c1-8
ae74cedb[root@masterscripts]#uuidgen|md5sum|cut-c1-8
fdfca8ec[root@masterscripts]#..
分类:
系统相关 时间:
2016-04-20 02:10:47
阅读次数:
249
1、为了方便查询服务器的硬件信息,将需要查询的内容整理成Shell脚步,输出自己想要的格式。其实就是通过dmidecode命令输出,然后通过sed,awk,cut命令的处理。2、此脚步适用于HPDL系列的服务器,DellPowerEdge系列的会有少许内容不同,所以在抓取过程会有小小报错。3、脚步内..
分类:
系统相关 时间:
2016-04-19 20:20:56
阅读次数:
299
http://piqnt.com/stage.js/ http://www.bootcdn.cn/stage.js/ Stage.js(可能又叫Cut.js)是一个2D HTML5 JavaScript library 跨平台的游戏开发,它是轻量级的,快速的和开源。(我想用它写计算材料的计算器) 2 ...
分类:
Web程序 时间:
2016-04-19 12:00:26
阅读次数:
189
examples come from native speaker Put john in the loop about this. He will have good advice.Why have I been cut out of the loop? I need to know about ...
分类:
其他好文 时间:
2016-04-18 20:21:26
阅读次数:
721
file=/dir1/dir2/dir3/my.file.txt我們可以用${}分別替換獲得不同的值:${file#*/}:拿掉第一條/及其左邊的字串:dir1/dir2/dir3/my.file.txt${file##*/}:拿掉最後一條/及其左邊的字串:my.file.txt${file#*.}:拿掉第一個.及其左邊的字串:file.txt${file##*.}:拿掉最後一?.
分类:
其他好文 时间:
2016-04-13 00:41:52
阅读次数:
137