#!/bin/bashlet a=11let a=a+5echo $ab=11b=`expr $b + 5`echo $bc=11c=$((c+5))echo $cdeclare -i d=11d=d+5echo $d
cu上的一个问题 http://bbs.chinaunix.net/viewthread.php?tid=1827378&page=1&extra=#pid13223240cat 14056 78 4056 198 7717 98 7717 218 7718 98 7718 218 7719 98 77
性能测试基准工具安装 yum install sysbench -y[root@test ~]# sysbench Missing required command argument.Usage: sysbench [general-options]... --test=<test-name> [test-options]...
本实例为计算指定日期(Thu Dec 2 15:10:39 2010)的90天后的日期 思路将日期转换为秒 再将秒转换回日期格式 可进行任意日期差的计算 #!/bin/bash date1=`date +%s&
打包list中的文件 [root@test shell]# cat list /etc/passwd /etc/fstab cat list | xargs -i tar rvPf list.tar {} [root@test shell]# tar tvf list.tar
按关键子分文件 1 为关键字文件 2为数据文件 知识点1. shell 向awk 传递参数 -v filename=$i2. awk 匹配变量 /'$i'/3. awk 写文件 print $0 > filename[root@test shell]# cat 1aabb[root@test sh
#!/usr/bin/env pythonimport sysimport relog_line_re = re.compile(r'''(?P<remote_host>\S+) #IP ADDRESS\s+ #whitespace\S+ #remote logname\s+ #whitespace\S+ #remote user\s+ #whitespace(?P<time&g
总流量awk -F '"' '{print $3}' /opt/lampp/logs/access_log | awk '{sum+=$2};END {print sum}' 访问次数前十的ipawk '{++S[$1]} END {for(a in S) print a,S[a]}' /opt/lampp/logs/access_log | sort -k2 -n -r | head访
#!/bin/shIPTABLES=/sbin/iptablesMODPROBE=/sbin/modprobeINT_NET=192.168.0.0/24###flush existing rules and set chain policy setting to DROPecho "[+] Flushing existing iptables rules..."$IPTABLES -F$IPTA
#!/usr/bin/env python"""USAGE:log filename"""import sysdef dictify_logline(line): split_line = line.split() return { 'remote_host'
文件b刘昭 语文 72张涛 语文 87李倩 语文 94李星 数学 72李星 语文 73李春 语文 67王春 数学 65王春 语文 66罗媛 语文 78龙波 语文 951.srt="刘昭"awk -v var="$srt" '{if ($1==var
A 文件张涛龙波王春罗媛刘昭B文件张涛 语文 87龙波 语文 95李春 语文 67罗媛 语文 78李倩 语文 94刘昭 语文 72李星 语文 73李星 数学 72王春 数学 65王春&
[root@test test]# cat ajiaminqiangzhaojinbiao1234567890[root@test test]# cat bdsfdsferer234jiaminqiangzhaojinbiao34r[root@test test]# cat cjiaminqiang098uiicomm a b输出结果为三列 第一列为只在a中存在的行 第二列
import hashlib hashlib.md5('123').hexdigest() f=open('d:/python/rr.py') hashlib.md5('f.readlines').hexdigest()
import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(1) try: s.connect(('www.baidu.com',80)) print 'Server port 80 OK!' except
原文地址 http://www.sunnyu.com/?p=84 为了AWSTATS给NGINX添加FASTCGI方式的PERL支持 有个应用(awstats)需要Perl脚本支持,但是用的Nginx服务器,对Perl支持不好,于是通过FastCGI方式来使用Perl。 首先安装Perl的FCGI模块 wget http://www.c
查看bios信息 dmidecode -t bios # dmidecode 2.9 SMBIOS 2.6 present. Handle 0x0000, DMI type 0, 24 bytes BIOS Information Vendor: Dell Inc. &nb
&nb
#!/bin/bash until [[ $# -eq 0 ]] do echo -e "\033[32;49;1m--------$1--------\033[39;49;0m" awk '{print "'$1'\
http://bbs.chinaunix.net/thread-1809430-1-1.html ls -l --time-style +%Y%m%d | grep -v "总计" | awk '{print $6 ,$7}' | awk '{print "mv",$2,$1"_"$2}' | sh
cat txt 211.138.124.179:80 221.130.17.61:80 219.135.215.37:8080 202.101.124.18:80 221.130.18.53:80 221.130.18.124:80 221.130.23.125:80 202.108.5.153:80 218.25.99.135:808 218.25.106.21
cat ip 210.192.120.228 www.163.com 61.135.169.105 www.baidu.com #!/bin/bash File=./ip while read line do ip=`echo $line | awk '{print $1}'` web=`echo $line | awk '{print $2}'`
inux下Memcache服务器端的安装 服务器端主要是安装memcache服务器端,目前的最新版本是 memcached-1.3.0 。 下载:http://www.danga.com/memcached/dist/memcached-1.2.2.tar.gz 另外,Memcache用到了libevent这个库用于Socket的处理,所以还需要安装libevent,libeve
siege安装./configure --prefix=/usr/local/siege --mandir=/usr/local/man make && make install 安装完成后,运行bin中的siege_config命令来创建.siege文件 ./siege -C 命令来查看当前配置 ./siege http://localho
#!/bin/bash SECONDS=3 #定义监控时间间隔 echo "开始" >> vmstat.log date >> vmstat.log vmstat >> vmstat.log while true do vmstat | sed -n
#!/bin/bash File=/etc/fstab while read line do echo $line done<$File #!/bin/bash cat /etc/fstab | while read line do echo $line done
01 sh#lvm vgscan 02 03
#!/usr/bin/python import pexpect foo = pexpect.spawn('passwd mqjia') foo.expect("New UNIX password:") foo.sendline("1234567") foo.expect("Retype new UNIX
#/usr/bin/perl use strict; use Expect; open(PASSWD,"1") or die print "cann't open 1:$!\n"; while(<PASSWD>){ chomp; my $name=$_; my $exp=new Expect; my $command=
#encode:utf-8 import urllib,urllib2,cookielib,json,time,md5,re class Renren(object): def __init__(self,email,password): self.ema
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号