Conditional Logic on Files # 判断文件是否存在及文件类型 -a file exists. #文件存在 -b file exists and is a block special file. #文件存在,并且是块设备 -c file exists and is a character special file. ##文件存在,并且是字符设备 -d file exists and is a directory. #文件存在,并且是目录 -e file exists (ju
文件及内容处理 - which.find 1. which:查找二进制命令,按环境变量PATH路径查找 which命令的功能说明 which 命令用于查找文件.which 指令会在环境变量 $PATH 设置的目录里查找符合条件的文件. which命令的语法格式 which [options] [--] programname [...] which [参数...] [命令] which命令的常用参数说明: which 参数不多,表1为 which 命令的参数及说明: 表1: which 命令的参
#!/bin/sh 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 mkdi
Linux shell编程——if条件判断 if [ condition ] ;then //一定要注意[] 與裡面的內容要有空格隔开 例如 if [(空格)${a} -eq 3(空格)]; then commandelif commandfishell脚本接收输入时,判断输入个数 用#计算if [ $# != 1 ] ; then echo "Usage: ./run.sh normal or quick" exitfi获取对应的输入值 用$nstyle=$1 比較,字符串变量表达