gpt4 book ai didi

linux - 无法检查目录是否存在 shell 脚本

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:07:32 25 4
gpt4 key购买 nike

我做了一个 if 语句(如下所示)来检查一个目录是否存在,如果不存在,则创建该目录,但是每次我运行它时它都找不到该目录,即使它确实存在,然后在试图创建它,因为它已经存在!!

有人可以帮忙吗!!

cd $HOME
if [-d user_records]
then
echo "user_records already exists!"
else
mkdir user_records
fi

最佳答案

你只是错过了一个空格:

if [ -d user_records]
# --^--

关于linux - 无法检查目录是否存在 shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43595046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com