我想通过仅将目录的部分名称作为参数来查找目录是否存在。即,如果名称为 /home/directory 的目录存在,我想通过给出 /home/direc* 来查找它是否存在
有没有办法在shell脚本中做到这一点?
我尝试了以下但不起作用:
directory=/home/direc*
if [[ -d "$directory" ]]; then
echo found;
else
echo not found
fi
我想通过仅将目录的部分名称作为参数来查找目录是否存在。即,如果名称为 /home/directory 的目录存在,我想通过给出 /home/direc* 来查找它是否存在
有没有办法在shell脚本中做到这一点?
我尝试了以下但不起作用:
directory=/home/direc*
if [[ -d "$directory" ]]; then
echo found;
else
echo not found
fi