语言(bash)
braveyly
这个作者很懒,什么都没留下…
展开
-
bash 资料汇总
实践大师:UNIX+sed和awk编程篇.pdf高级Bash脚本编程指南--一本深入学习shell脚本艺术的书籍shell 面试题汇集原创 2011-04-13 16:23:00 · 636 阅读 · 0 评论 -
统计命令执行时间和获取swap内存
bash 综合应用time swap1、Statistic of Time for CommandExcutationCount the time of mkdir 100 dir. #! /bin/bashtimefor i in {原创 2011-04-13 16:17:00 · 905 阅读 · 0 评论 -
获取某个进程的CPU使用情况
Gain One Process Cpu Usage InfoFirst, top command to get all informationThen, grep command to get the process record that you wantThir原创 2011-04-10 18:59:00 · 1432 阅读 · 0 评论 -
sed字符串对象【查找】
Bash sed 查找1、Use sed to Searchsed –n ‘/regular expression/p’ file Lack “-n” willlead not to search. 2、Regular Expression And Gre原创 2011-04-12 18:24:00 · 16619 阅读 · 0 评论 -
sed行对象【列表】和单个字符对象【替换】
Bash sed【行列表】和【字符替换】 一、ListList the specific item lines.-n forbids default print.[braveyly@m-net ~]$ cat sedly.txtword原创 2011-04-09 18:28:00 · 871 阅读 · 0 评论 -
去重复和排序【sort】【uniq】
<!---->Bash综合应用uniq sort一、Uniq[nick@d01 bash]$ cat uniq.txtboy took bat homeboy took bat homegirl took bat homedog原创 2011-04-13 16:16:00 · 6620 阅读 · 0 评论 -
gcc目录下所有文件
Bash综合应用gcc目录下所有文件Use gcc to compile all C source file toobject file in one dir.#!/bin/bash for i in *.cdoecho "$i"ech原创 2011-04-12 14:29:00 · 962 阅读 · 0 评论 -
字符串对象分割【cut】
cut -dchar -ffilednumCut one line into different fileds by char, and then print out the filednumth filed.Blank and no blank are option原创 2011-08-16 11:39:55 · 851 阅读 · 0 评论 -
批量修改文件后缀名
Bash批量修改文件后缀名Mv files suffix in batch in one dir 一、# and %#! /bin/bashFILE=dir1/dir2/dir3/my.file.txtecho "The source st原创 2011-04-14 20:40:00 · 1288 阅读 · 1 评论 -
bash调试
见“如何调试bash脚本”原创 2013-12-04 15:36:29 · 1081 阅读 · 0 评论 -
Bash awk 基本入门
Bash awk基本入门Awk‘patten{action}’ fileAkw command is used to handle fields in one line.Analize every line in the file, and if th原创 2011-04-10 17:30:00 · 4627 阅读 · 0 评论 -
输出传递【xargs】
Bash xargs使用说明 大多数 Linux命令都会产生输出:文件列表、字符串列表等。但如果要使用其他某个命令并将前一个命令的输出作为参数该怎么办?例如,file命令显示文件类型(可执行文件、ascii文本等);你能处理输出,使其仅显示文件名,目前你希望将原创 2011-04-12 15:03:00 · 1170 阅读 · 0 评论 -
Bash循环结构
<br />Bash循环结构一、for结构<br />For arginlist<br />Do<br />…<br />done<br />有限循环,次数取决于list元素的个数,内容取决于list元素的值二、while结构<br />While […]<br />Do<br原创 2011-04-01 17:14:00 · 1387 阅读 · 0 评论 -
Bash参数列表
<br />Bash参数列表一、取参数<br />Command<br />Meaning<br />$@ $*<br />Represent all arguments<br />$#<br />The number of arguments<br />$0<br />原创 2011-04-01 15:05:00 · 3259 阅读 · 0 评论 -
Bash sed 读和写文件入门
Bash sed 读和写文件入门<br />一、read<br /> <br />‘[position line]r source.txt’ target.txt<br /> <br />Find the line from target.txt through position原创 2011-04-09 18:59:00 · 2143 阅读 · 0 评论 -
Bash 文件判断
Bash 文件判断 一、命令 Command Decription -e C原创 2011-04-07 13:12:00 · 1375 阅读 · 0 评论 -
Bash基本字符串操作
<br />Bash基本字符串操作一、取得字符串长度<br /> <br />${#string}<br /> 二、得到子字符串的位置<br />`exprindex “$str” “$substr” `<br /> 三、取得字符串的子串<br />`expr ${str:原创 2011-04-02 15:31:00 · 4663 阅读 · 0 评论 -
Bash算术运算
<br />Bash算术运算一、两种方式expr和let<br />Let是expr的简化版,更简单以及易懂。<br />例如:expr要求操作符两边必须空格<br /> Expr要求乘法必须转义二、 代码<br />#! /bin/bash<br /> <br /原创 2011-04-01 15:49:00 · 4436 阅读 · 0 评论 -
bash条件测试及变量比较
<br />bash条件测试及变量比较一、 条件表达式<br />1. 基本的if语句<br />if [ … ]<br />then<br />….<br />Fi<br /> <br />2. 多个if语句<br />if […]<br />then<br />…<原创 2011-04-01 14:32:00 · 4390 阅读 · 0 评论 -
sed 行对象【插入】【追加】【替换】
sed行对象【插入】【追加】【替换】All these three commands are for line object, not string.一、Inserti newlinewordsinsert one new line before line原创 2011-04-09 17:56:00 · 2265 阅读 · 0 评论 -
sed字符串对象【替换】
sed字符串替换[position]s/source/destination/flagsPosition is optional。 一、S Specific Parameters(1)&[nick@d01 bash]$ cat sedrep原创 2011-04-08 21:10:00 · 2535 阅读 · 0 评论 -
sed行对象【删除】
一、删除第一行[nick@d01 bash]$ cat seddel.txt abcdword11#23word2tabctdef[nick@d01 bash]$ sed -e '1d' seddel原创 2011-04-08 20:15:00 · 1083 阅读 · 0 评论 -
bash脚本实例
1、替换目录下文件或单个文件的字符串#!/bin/bashsearch_path=$1old_str=$2new_str=$3grep $old_str -rl $search_path sed -i "s/$old_str/$new_str/g" `grep $old_str -rl $search_path`使用方法:./replace.sh "/root/"原创 2013-12-03 11:12:26 · 1405 阅读 · 0 评论