努力奋斗的骚年!
发布时间:2013-09-14 20:32:00
# set -o noclobber# touch test# echo "a" > testksh: test: file already exists# set +o noclobber# echo "a" > test# cat testa# 若要不取消同时又要可覆写:#set -o noclobber#touch test#echo "a" >| test 注意:>和|之间不能有空格.........【阅读全文】
发布时间:2013-09-07 20:08:17
在计算机科学中,是指一个用来描述或者匹配一系列符合某个句法规则的字符串的单个字符串。在很多文本编辑器或其他工具里,正则表达式通常被用来检索和/或替换那些符合某个模式的文本内容。许多程序设计语言都支持利用正则表达式进行字符串操作。例如,在Perl中就内建了一个功能强大的正则表达式引擎。正则表达式这个概念.........【阅读全文】
发布时间:2013-09-06 18:38:06
Today , when I learned about sed,I found a question there.http://www.chinaunix.net/old_jh/24/318807.htmlThat is :$ cat hello hellohellohello I want the output like this :hello hello hello So the code is this : sed&.........【阅读全文】
发布时间:2013-09-02 16:03:58
很棒的shell script//转说明:这个脚本是可以从一个文本的某一行开始,逐行编辑文本,在编辑中也可选q退出,最后提示是否保存更改,更改成功后写入到原文本文件中。比如:文本文件file1第5行是“ni hao”想改成“hello”就可以用tiansgx file1然后按照提示一步步更改即可。#!/bin/bash# Script name: tiansgx fun.........【阅读全文】