1

下面是一个较大脚本的片段,该脚本导出用户指定目录的子目录列表,并在另一个用户指定目录中创建具有相同名称的目录之前提示用户。

COPY_DIR=${1:-/}
DEST_DIR=${2}
export DIRS="`ls --hide="*.*" -m ${COPY_DIR}`"
export DIRS="`echo $DIRS | sed "s/\,//g"`"
if [ \( -z "${DIRS}" -a "${1}" != "/" \) ]; then 
  echo -e "Error: Invalid Input: No Subdirectories To Output\n"&&exit
elif [ -z "${DEST_DIR}" ]; then 
  echo "${DIRS}"&&exit
else
  echo "${DIRS}"
  read -p "Create these subdirectories in ${DEST_DIR}?" ANS
  if [ ${ANS} = "n|no|N|No|NO|nO" ]; then
    exit
  elif [ ${ANS} = "y|ye|yes|Y|Ye|Yes|YE|YES|yES|yeS|yEs|YeS" ]; then
    if [ ${COPYDIR} = ${DEST_DIR} ]; then
      echo "Error: Invalid Target: Source and Destination are the same"&&exit
    fi
    cd "${DEST_DIR}"
    mkdir ${DIRS}
  else 
    exit
  fi
fi

但是,该命令ls --hide="*.*" -m ${COPY_DIR}也会打印列表中的文件。有没有办法改写这个命令,使它只打印出目录?我试过ls -d了,但这也不起作用。有任何想法吗?

4

1 回答 1

0

您永远不应该依赖 的输出ls来提供文件名。有关不解析的原因,请参阅以下内容:http ls: //mywiki.wooledge.org/ParsingLs

您可以使用 GNU find 的 -print0 选项安全地构建目录列表并将结果附加到数组中。

dirs=() # create an empty array
while read -r -d $'\0' dir; do # read up to the next \0 and store the value in "dir"
   dirs+=("$dir") # append the value in "dir" to the array
done < <(find "$COPY_DIR" -type d -maxdepth 1 -mindepth 1 ! -name '*.*') # find directories that do not match *.*

-mindepth 1阻止 find 匹配 $COPY_DIR 本身。

于 2012-07-29T03:00:28.703 回答