生活的美妙在于,不知道一下秒是惊艳还是伤神,时光流转,珍惜现在的拥有的时光
全部博文(276)
发布时间:2012-12-14 09:53:41
格式化打印:由于awk处理的主要任务是产生格式化的报告,而print的功能有限,所以借用了C语言的printf语句。printf的语法结构是:printf(format_expression[,arguments])常用的format_expression有d整数,s字符串条件语句:if(expression) action1;[else action2]条件操作符:(expression)?action1:action2循环:while/for while(condtion) &nbs......【阅读全文】
发布时间:2012-07-10 17:33:27
最近安装了kvm,手上有几个ip可用,想做一下桥接给几个虚拟机用.<br />[root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-br0 <br />DEVICE="br0"<br />BOOTPROTO="static"<br />GATEWAY="172.16.3.1"<br />IPADDR="172.16.3.64"<br />IPV6INIT="yes"<br />MTU="1500"<br />NETMASK="255.255.255.0"<br .........【阅读全文】
发布时间:2012-06-30 10:05:17
[10:07:08 talen@BJB0300 ~ ]$ mkdir /tmp/test[10:07:26 talen@BJB0300 ~ ]$ touch /tmp/test/中文.txt[10:07:37 talen@BJB0300 ~ ]$ ls /tmp/test/中文.txt[10:07:49 talen@BJB0300 ~ ]$ tree /tmp/test//tmp/test/└── \344\270\255\346\226\207.txt0 directories, 1 file[10:07:56 talen@BJB0300 ~ ]$ tree.........【阅读全文】
发布时间:2012-06-26 10:23:56
查看ssh服务是否安装 <div><br /></div><div><div>[root@localhost ~]# rpm -qa |grep -E '(ssh.*server|server.*ssh)'</div><div>openssh-server-5.3p1-70.el6.i686</div></div><div><br /></div><div>查看配置文件</div><div><div>[root@localhost ~]# rpm -qc openssh-server.........【阅读全文】
发布时间:2012-06-13 10:38:03
一台新的服务器,准备源码安装一些软件,使用scp复制文件时提示bash: scp: command not found排查了一下[10:28:48 talen@BJB0300 ~ ]$ scp bash-4.2.tar.gz root@10.10.56.11:root@10.10.56.11's password: bash: scp: command not foundlost connection本地是有scp命令的,密码输入也是正确的加-v参数查看详细过程,认.........【阅读全文】
发布时间:2012-05-29 11:18:14
HISTTIMEFORMAT If this variable is set and not null, its value is used as a format string for strftime(3) to print the  .........【阅读全文】
发布时间:2012-05-24 10:26:06
经常要到svn上取出部署文件,于是用python写了一个简单的取出脚本点击(此处)折叠或打开#!/usr/bin/python#coding=UTF8url=raw_input('输入SVN的URL: ')url_svn_https= url[:30]url_out_dir=url[30:]out_dir='/mnt/work/t.........【阅读全文】
发布时间:2012-05-18 15:20:03
安装memcached 需要依赖libevent库<br />1.下载软件:<br /> 官方地址:http://http://memcached.org/<br /> http://libevent.org/<br /> http://memcached.googlecode.com/fi.........【阅读全文】
发布时间:2012-05-17 09:44:09
Linux Shell 环境中的输入输出重定向,用符号<和>来表示。0、1和2分别表示标准输入、标准输出和标准错误。1.重定向标准输出到文件:cat foo > foo.txt2.重定向标准错误到文件cat foo 2> foo.txt3.重定向标准输出到标准错误cat foo 1>&24.重定向标准错误到标准输出cat foo 2>&15.重定向.........【阅读全文】