shell脚本之判断文件类型
程序员文章站
2024-02-19 12:40:28
...
shell脚本之判断文件类型
- 原码如下:
#!/bin/bash
#check that the files exists.
addr=/home/hadoop/test.txt
if [ -d $addr ]
then echo $addr is a directory
elif [ -e $addr ]
then echo $addr is a file
fi