#!/bin/bash # # Judging the element is a file or a folder if [ $# -lt 1 ];then echo "ERROE!! Usage: ckfile.sh ARGS1 [ARGS2...]" exit 4 fi for i in `seq 1 $#` do if [ -f $1 ];then echo $1 is a commom file elif [ -d $1 ];then echo $1 is a directory else echo "$1 is not exsit or unknown!" fi shift done
知识记忆点
1。 $1 $2... 定义脚本接受输入变量
2。 shift 脚本接受输入变量偏移,执行一次,$1的变量被$2覆盖
3。 $# 接受变量的数量
$? 最近一次执行过程的状态吗
本文出自 “三十男人学运维” 博客,请务必保留此出处http://loyfee.blog.51cto.com/754862/1531492
SHELL脚本--用于检测一个或者多个对象是文件或者目录,布布扣,bubuko.com
原文地址:http://loyfee.blog.51cto.com/754862/1531492