本文主要是介绍shell 判断文件是否存在(csh bash),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 前言
- 1. -e 判断文件是否存在
- 2. -f 判断文件是否存在且为普通文件
- 3. -d 判断文件是否存在且为目录
- 3. -s 判断文件是否存在且不为空
- 4. -r 判断文件是否存在且可读
- 5. -w 判断文件是否存在且可写
- 6. -x 判断文件是否存在且可执行
前言
Shell 编程能提升我们工作效率,在 shell 中, 可以借助文件测试符号来判断一个文件是否存在。 常用的文件测试符号有 -e, -f, -d, -s, -r。
1. -e 判断文件是否存在
#!/bin/cshset fileName = "test.txt"
#set fileName = "test_dir"if (-e $fileName) thenecho "$fileName" " is exit"
elseecho "$fileName" " is not exit"
endif
#!/bin/bashfile=test.txt
#file=test_dirif [ -e "$file" ]; thenecho "$file" "is exit"
elseecho "$file" "is not exit"
fi
2. -f 判断文件是否存在且为普通文件
3. -d 判断文件是否存在且为目录
#!/bin/cshset fileName = "test_test"if (-d $fileName) thenecho "$fileName" " is exit"
elseecho "$fileName" " is not exit"
endif
3. -s 判断文件是否存在且不为空
4. -r 判断文件是否存在且可读
5. -w 判断文件是否存在且可写
6. -x 判断文件是否存在且可执行
这篇关于shell 判断文件是否存在(csh bash)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!