仓酷云

标题: 给大家带来shell 判别文件是不是存在 [打印本页]

作者: 小妖女    时间: 2015-1-14 20:14
标题: 给大家带来shell 判别文件是不是存在
欢迎大家来到仓酷云论坛!代码以下:

#!/bin/sh
#判别文件是不是存在
#link:www.ckuyun.com
#date:2013/2/28
myPath="/var/log/httpd/"
myFile="/var/log/httpd/access.log"
#这里的-x参数判别$myPath是不是存在而且是不是具有可实行权限
if[!-x"$myPath"];then
mkdir"$myPath"
fi
#这里的-d参数判别$myPath是不是存在
if[!-d"$myPath"];then
mkdir"$myPath"
fi
#这里的-f参数判别$myFile是不是存在
if[!-f"$myFile"];then
touch"$myFile"
fi
#其他参数另有-n,-n是判别一个变量是不是是不是有值
if[!-n"$myVar"];then
echo"$myVarisempty"
exit0
fi
#两个变量判别是不是相称
if["$var1"="$var2"];then
echo$var1eq$var2
else
echo$var1noteq$var2
fi



-f和-e的区分
ConditionalLogiconFiles
-afileexists.
-bfileexistsandisablockspecialfile.
-cfileexistsandisacharacterspecialfile.
-dfileexistsandisadirectory.
-efileexists(justthesameas-a).
-ffileexistsandisaregularfile.
-gfileexistsandhasitssetgid(2)bitset.
-GfileexistsandhasthesamegroupIDasthisprocess.
-kfileexistsandhasitsstickybitset.
-Lfileexistsandisasymboliclink.
-nstringlengthisnotzero.
-oNamedoptionisseton.
-OfileexistsandisownedbytheuserIDofthisprocess.
-pfileexistsandisafirstin,firstout(FIFO)specialfileor
namedpipe.
-rfileexistsandisreadablebythecurrentprocess.
-sfileexistsandhasasizegreaterthanzero.
-Sfileexistsandisasocket.
-tfiledescriptornumberfildesisopenandassociatedwitha
terminaldevice.
-ufileexistsandhasitssetuid(2)bitset.
-wfileexistsandiswritablebythecurrentprocess.
-xfileexistsandisexecutablebythecurrentprocess.
-zstringlengthiszero.
是用-s仍是用-f这个区分是很年夜的!
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!
作者: 精灵巫婆    时间: 2015-1-15 07:17
标题: 给大家带来shell 判别文件是不是存在
为保住菊花,这个一定得回复!
作者: 分手快乐    时间: 2015-1-24 14:53
硬盘安装及光盘安装,清楚了解安装Linux应注意的有关问题,如安装Linux应在最后一个分区内,至少分二个分区。
作者: 不帅    时间: 2015-2-1 23:46
如果你想深入学习Linux,看不懂因为文档实在是太难了。写的最好的、最全面的文档都是英语写的,最先发布的技术信息也都是用英语写的。
作者: 蒙在股里    时间: 2015-2-7 18:34
为了更好的学习这门课程,我不仅课上认真听讲,课下也努力学习,为此还在自己的电脑上安装了Ubuntu系统。
作者: 精灵巫婆    时间: 2015-2-23 09:32
工具书对于学习者而言是相当重要的。一本错误观念的工具书却会让新手整个误入歧途。目前国内关于Linux的书籍有很多不过精品的不多。
作者: 仓酷云    时间: 2015-3-7 09:46
我学习Linux的心得体会 ,希望对大家的学习有所帮助,由于水平有限,本文难免有所欠缺,望请指正。
作者: 冷月葬花魂    时间: 2015-3-15 01:42
随着Linux技术的更加成熟、完善,其应用领域和市场份额继续快速增大。目前,其主要应用领域是服务器系统和嵌入式系统。然而,它的足迹已遍布各个行业,几乎无处不在。
作者: 愤怒的大鸟    时间: 2015-3-21 19:49
对我们学习操作系统有很大的帮助,加深我们对OS的理解。?




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2