cp复制文件时目标目录不存在的解决方法时间:2022-06-22 17:56:47 也许这个问题太简单了?网上竟然很难翻到能用的解决方案 if [ ! -d "$destDir" ]; then mkdir -p "$destDir" fi