发布时间:2015-01-20 21:52:26
用于产生从某个数到另外一个数之间的所有整数例一:# seq 1 10结果是1 2 3 4 5 6 7 8 9 10例二:#!/bin/bashfor i in `seq 1 10`;doecho $i;done或者用for i in $(seq 1 10)也可以seq-f, --format=FORMAT use printf style floating-point FORMAT (default: %g)-s, --separator=STRING .........【阅读全文】
发布时间:2015-01-20 21:17:23
man xargs:点击(此处)折叠或打开xargs [-0prtx] [-E eof-str] [-e[eof-str]] [--eof[=eof-str]] [--null] [-d delimiter] [--delimiter delimiter] [-I replace-str] [-i[replace- &.........【阅读全文】
发布时间:2015-01-08 03:17:02
今天将rhel6.4默认的python升级到了2.7,然后在使用yum的时候报如下错误:点击(此处)折叠或打开[root@nortorm ~]# yum repolist There was a problem importing one of the Python modules re.........【阅读全文】
发布时间:2015-01-04 03:12:09
点击(此处)折叠或打开#! /usr/bin/sed -fs/ *//gs/\*/;/s/\([0-9]\)\([0-9]\);/\1a\2;/s/\([0-9]\)\([0-9]\)$/\1a\2/: as/\([0-9]\)\([0-9]\)\(aa*\)/\1a\3\2\3/t ah.........【阅读全文】
发布时间:2014-12-27 13:37:16
点击(此处)折叠或打开#!/bin/bash#echo "待测试!"#Author:nor######################################################################dir=`pwd`yum_rhel5="http://pkgs.repoforge.org/rpmforge.........【阅读全文】