上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1)yum install -y lrzsz2) 软件安装首先通过sftp工具把安装文件上传到/tmp目录下.# cd /tmp# wget http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gz# tar zxvf lrzsz-0.12.20.ta... 阅读全文
posted @ 2015-04-30 14:33 金葵学子 阅读(129) 评论(0) 推荐(0) 编辑
摘要: tcpdump -i eth1 -nn 'dst host 172.31.0.42' -w /tmp/temp.cap监听指定的主机$tcpdump-ieth0-nn'host192.168.1.231'这样的话,192.168.1.231这台主机接收到的包和发送的包都会被抓取。$tcpdump-i... 阅读全文
posted @ 2015-04-30 14:26 金葵学子 阅读(575) 评论(0) 推荐(0) 编辑
摘要: [root@BMS020 source]# cat tarsourcereq.sh #!/bin/bashset -x. /etc/profile#LOGFILE="/tmp/tarreq.log"DIR="/opt/onlineorder/source/"cd $DIRfor i in `find... 阅读全文
posted @ 2015-04-28 14:08 金葵学子 阅读(337) 评论(0) 推荐(0) 编辑
摘要: [datacenter@newftp ftpsite]$ cat chk_mediaserver.sh #!/bin/bashps -ef |grep mediaserver |grep -v 'grep'if [ $?!=0 ] ;then /opt/app/tv189/services/tick... 阅读全文
posted @ 2015-04-24 16:40 金葵学子 阅读(322) 评论(0) 推荐(0) 编辑
摘要: [datacenter@newftp ftpsite]$ cat check_80.sh #!/bin/bashfunction check_url() {D=$(date +%H%M%S)curl --connect-timeout 10 -m 20 "127.0.0.1:80" > /dev/n... 阅读全文
posted @ 2015-04-24 16:39 金葵学子 阅读(86) 评论(0) 推荐(0) 编辑
摘要: [root@supermaster ~]# /sbin/ifconfig eth0 | grep 'inet addr' | sed 's/^.*addr://g'|cut -d" " -f1192.168.131.94 阅读全文
posted @ 2015-04-22 15:24 金葵学子 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 2.命令参数:-b:指定行号指定的方式,主要有两种:-ba:表示不论是否为空行,也同样列出行号(类似cat-n);-bt:如果有空行,空的那一行不要列出行号(默认值);-n:列出行号表示的方法,主要有三种:-nln:行号在萤幕的最左方显示;-nrn:行号在自己栏位的最右方显示,且不加0;-nrz:行... 阅读全文
posted @ 2015-04-22 15:02 金葵学子 阅读(204) 评论(0) 推荐(0) 编辑
摘要: shell 去掉文件中的空行cat filename | sed -e '/^$/d' > filename保留最新的9个文件,其它的文件删除的命令语句ls -t | awk '{if(NR>9){print $0}}' |xargs rm -fvi 里面删除空白行:g/^$/d常用选项:-n∶使用... 阅读全文
posted @ 2015-04-22 14:39 金葵学子 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1.scp 限速100KB/s scp -l 1000 test root@192.168.1.104此时的传输速率就是1M/8=100KB左右2.rsync 限速100KB/s rsync -auvzP --bwlimit=100 本地文件 远程文件参数说明: v:详细提示 a:以archive... 阅读全文
posted @ 2015-04-22 13:50 金葵学子 阅读(2384) 评论(0) 推荐(0) 编辑
摘要: 2.1.输出重定向:Command > filename把标准输出重定向到一个新文件中Command >> filename把标准输出重定向到一个文件中(追加)Command > filename把标准输出重定向到一个文件中Command > filename 2>&1把标准输出和错误一起重定向到一... 阅读全文
posted @ 2015-04-22 11:10 金葵学子 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页