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 it‘s not a directory!
以上是关于shell 判断是否是目录的主要内容,如果未能解决你的问题,请参考以下文章