assignment3 shell脚本不会自动创建output文件夹
Closed this issue · 0 comments
tangjiewei0336 commented
如果你也报error: No such file or directory
试试加上
if [ ! -d "output" ]; then
mkdir output
else
echo "output 目录已存在"
fi
Closed this issue · 0 comments
如果你也报error: No such file or directory
试试加上
if [ ! -d "output" ]; then
mkdir output
else
echo "output 目录已存在"
fi