| 关键词: nbsp sed 空行 文件 版本 sourceforge grep ctrl 新行 command |
删除 core 文件 # find ~ -name core -exec file {} ; -exec rm -i {} ; 查看使用文件的进程 # fuser -u /usr/my_application/foo 搜索字符串 #grep "hello world" `find ./ -name "*" -print -exec file {} ; |grep text | cut -d ':' -f 1` 目录 #alias dir='ls -Lla|grep ^d' 输出 IP 地址 #ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{print $2;}' | awk -F':' '{print $2;}' 按文件长度排序 #ls -l | grep ^- | sort -nr -k 5 | more #ls -lR | grep ^- | sort -nr -k 5 | more 二进制文件中的可打印字符 # strings name of binary file 一个月的最后一个星期天执行任务: 18 * * * 0 [`date "+%d"` -gt 24] && /path/to/script 修改扩展名: # for f in *.abc; do mv $f `basename $f .abc`.def ; done 查看硬盘情况:(Solaris) # iostat -En 整个目录树拷贝: # cd # find . -depth -print | cpio -pudm 按长度排序目录下所有文件 # du -a | sort -n -r | more 检查文件内每行是否有相同列数 #awk '{print NF}' test.txt |sort -nu|more 去除空行 #sed -e '/^[ ]*$/d' InputFile >OutputFile 查看进程占用的对应文件 inode 号(Solaris) #/usr/proc/bin/pfiles 删除指定用户的所有进程 # kill -9 `ps -fu username |awk '{ print $2 }'|grep -v PID` Bash 操作快捷键: ctrl-l -- clear screen ctrl-r -- does a search in the previously given commands so that you don't have to repeat long command. ctrl-u -- clears the typing before the hotkey. ctrl-a -- takes you to the begining of the command you are currently typing. ctrl-e -- takes you to the end of the command you are currently typing in. esc-b -- takes you back by one word while typing a command. ctrl-c -- kills the current command or process. ctrl-d -- kills the shell. ctrl-h -- deletes one letter at a time from the command you are typing in. ctrl-z -- puts the currently running process in background, the process can be brought back to run state by using fg command. esc-p -- like ctrl-r lets you search through the previously given commands. esc-. -- gives the last command you typed. 文件名里的空格替换为下划线 # for i in $1 ; do mv "$i" `echo $i | sed 's/ /_/g'` ; done 查看远程主机时间 # telnet remotehostname 13|grep : 只显示 top 命令的states 行 #while true; do top -d 2 | col -b | grep states; sleep 10; done 加速显示 tar 文件内容 # tar tvfn 让 目录名也能 Spell Check #shopt -s cdspell 当输错命令时,系统会自动进入类似的目录 查看 Sun 服务器型号 # /usr/platform/`uname -m`/sbin/prtdiag -v | grep `uname -m` 在vi 中一行文字前后添加字符 :/^(.*)/s//我要 1 添加/ 查找某包含字符串(Verita)软件包的详细信息 (Solaris) pkginfo -l `pkginfo | grep -i VERITAS | awk '{print $2}'` Sun 的一大堆脚本 http://www.sun.com/bigadmin/scripts/index.html ------------------------------------------------------------------------- SED单行脚本快速参考(Unix 流编辑器) 2005年12月29日 英文标题:USEFUL ONE-LINE SCRIPTS FOR SED (Unix stream editor) 原标题:HANDY ONE-LINERS FOR SED (Unix stream editor) 整理:Eric Pement - 电邮:pemente[at]northpark[dot]edu 版本5.5 译者:Joe Hong - 电邮:hq00e[at]126[dot]com 在以下地址可找到本文档的最新(英文)版本: http://sed.sourceforge.net/sed1line.txt http://www.pement.org/sed/sed1line.txt 其他语言版本: 中文 - http://sed.sourceforge.net/sed1line_zh-CN.html 捷克语 - http://sed.sourceforge.net/sed1line_cz.html 荷语 - http://sed.sourceforge.net/sed1line_nl.html 法语 - http://sed.sourceforge.net/sed1line_fr.html 德语 - http://sed.sourceforge.net/sed1line_de.html 葡语 - http://sed.sourceforge.net/sed1line_pt-BR.html 文本间隔: -------- # 在每一行后面增加一空行 sed G # 将原来的所有空行删除并在每一行后面增加一空行。 # 这样在输出的文本中每一行后面将有且只有一空行。 sed '/^$/d;G' # 在每一行后面增加两行空行 sed 'G;G' # 将第一个脚本所产生的所有空行删除(即删除所有偶数行) sed 'n;d' # 在匹配式样“regex”的行之前插入一空行 sed '/regex/{x;p;x;}' # 在匹配式样“regex”的行之后插入一空行 sed '/regex/G' # 在匹配式样“regex”的行之前和之后各插入一空行 sed '/regex/{x;p;x;G;}' 编号: -------- # 为文件中的每一行进行编号(简单的左对齐方式)。这里使用了“制表符” # (tab,见本文末尾关于' '的用法的描述)而不是空格来对齐边缘。 sed = filename | sed 'N;s/ / /' # 对文件中的所有行编号(行号在左,文字右端对齐)。 sed = filename | sed 'N; s/^/ /; s/ *(.{6,}) /1 /' # 对文件中的所有行编号,但只显示非空白行的行号。 sed '/./=' filename | sed '/./N; s/ / /' # 计算行数 (模拟 "wc -l") sed -n '$=' 文本转换和替代: -------- # Unix环境:转换DOS的新行符(CR/LF)为Unix格式。 sed 's/.$//' # 假设所有行以CR/LF结束 sed 's/^M$//' # 在bash/tcsh中,将按Ctrl-M改为按Ctrl-V sed 's/x0D$//' # ssed、gsed 3.02.80,及更高版本 # Unix环境:转换Unix的新行符(LF)为DOS格式。 sed "s/$/`echo -e \ `/" # 在ksh下所使用的命令 sed 's/$'"/`echo \ `/" # 在bash下所使用的命令 sed "s/$/`echo \ `/" # 在zsh下所使用的命令 sed 's/$/ /' # gsed 3.02.80 及更高版本 # DOS环境:转换Unix新行符(LF)为DOS格式。 sed "s/$//" # 方法 1 sed -n p # 方法 2 # DOS环境:转换DOS新行符(CR/LF)为Unix格式。 # 下面的脚本只对UnxUtils sed 4.0.7 及更高版本有效。要识别UnxUtils版本的 # sed可以通过其特有的“--text”选项。你可以使用帮助选项(“--help”)看 # 其中有无一个“--text”项以此来判断所使用的是否是UnxUtils版本。其它DOS # 版本的的sed则无法进行这一转换。但可以用“tr”来实现这一转换。 sed "s/ //" infile >outfile # UnxUtils |
|
声明:文章版权归原作者所有 部分文章转自互联网 如有侵权请联系
[邮箱地址] 删除
|