欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

shell脚本之判断文件类型

程序员文章站 2024-02-19 12:40:28
...

shell脚本之判断文件类型

  1. 原码如下:
#!/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