shell 判断是否是目录

Posted F

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 判断是否是目录相关的知识,希望对你有一定的参考价值。

 

 

创建一个文件和一个文件夹

touch sss
mkdir d

test.sh

#!/bin/bash
echo "enter the name:"
read filename
if test -d $filename ; then
cd $filename
pwd
else
echo "it‘s not a directory!"
fi

 

执行

sudo chmod +x test.sh
./test.sh

输出

enter the name:
d
/home/xxx/Desktop/d

 

执行

./test.sh

输出

enter the name:
sss
its not a directory!

 


以上是关于shell 判断是否是目录的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本判断文件是不是存在

shell 判断是否是目录

shell判断文件是不是存在

shell条件判断总结

Shell中各种判断语法

shell 编程 -- 条件判断