文章分类 -  SHELL

摘要:shell判断文件,目录是否存在或者具有权限 #!/bin/sh Path="/var/log/httpd/" File="/var/log/httpd/access.log" #这里的-x 参数判断$Path是否存在并且是否具有可执行权限 if [ ! -x "$Path"]; then mkdir "$Path" fi #这里的-d 参数判断$Path是否存在 if [ ! -d ... 阅读全文
posted @ 2016-03-17 16:50 dupuleng 阅读(253) 评论(0) 推荐(0) 编辑
摘要:dir=/etc/ for file in $dir/*; do echo $file done 阅读全文
posted @ 2016-03-17 16:45 dupuleng 阅读(14809) 评论(0) 推荐(0) 编辑
摘要:很多时候在使用Linux的shell时,我们都需要对文件名或目录名进行处理,通常的操作是由路径中提取出文件名,从路径中提取出目录名,提取文件后缀名等等。例如,从路径/dir1/dir2/file.txt中提取也文件名file.txt,提取出目录/dir1/dir2,提取出文件后缀txt等。 1、${ 阅读全文
posted @ 2016-03-17 16:43 dupuleng 阅读(738) 评论(0) 推荐(0) 编辑
摘要:转:http://awk.readthedocs.org/en/latest/chapter-one.html一. AWK入门指南Awk是一种便于使用且表达能力强的程序设计语言,可应用于各种计算和数据处理任务。本章是个入门指南,让你能够尽快地开始编写你自己的程序。第二 章将描述整个语言,而剩下的章节... 阅读全文
posted @ 2015-07-23 15:03 dupuleng 阅读(163) 评论(0) 推荐(0) 编辑
摘要:在shell编程中会遇到多个子串连接在一起的问题,不需要像c++或java一样的+符号,只需要简单连起来即可num = 10str="hello world"t="num="$num" str="$strecho $t 阅读全文
posted @ 2015-07-20 15:15 dupuleng 阅读(506) 评论(0) 推荐(0) 编辑
摘要:转:http://www.coder4.com/archives/3853 阅读全文
posted @ 2015-07-20 15:08 dupuleng 阅读(118) 评论(0) 推荐(0) 编辑