grep 抱怨 `grep: : 没有这样的文件或目录`

grep 抱怨 `grep: : 没有这样的文件或目录`

已为脚本编写了以下测试。

我通过以下方式调用它,以获取grep投诉。

test --FS="," --incl=.texi,.org -C 8 --dyn="package" ./01cuneus
grep: : No such file or directory

我发现其中fdir包含一个空元素,这可能是问题的原因。

test ()
{

  local fs=""  fdir=()  incl=()
  local dyn=0  ctx=0  fdir=""
  local isufx=()  ictx=()
 
  shrtopts="C:"
  longopts="FS:,incl:,dyn:,dynamic:,context:"
  
  opts=$(getopt -o "$shrtopts" -l "$longopts" -n "${0##*/}" -- "$@")

  eval "set -- ${opts}"
  while (( $# > 0 )); do
    case "$1" in
      # ----------------------------------------------
      ("--FS")
        fs="$2" ; shift 2 ;;
      ("--incl")
        incl+=("$2") ; shift 2 ;;
      # ----------------------------------------------
      ("--dyn"|"--dynamic")
        dyn=1 ; ptrn="$2" ; shift 2 ;;
      ("-C"|"--context")
        ctx=$2 ; shift 2 ;;
      # ----------------------------------------------
      ("--")
        shift ; break ;;
      # ----------------------------------------------
    esac
  done

  if (( $# >= 1 )); then
    
    declare -A tag                # declare Associative Array
    for dpa in "$@"; do
      [[ ! -d $dpa ]] && continue  # skip to next iteration
      [[ ${tag[din:$dpa]} ]] && continue
      fdir+=("$dpa")
      tag[din:$dpa]=1
    done

  fi

  [[ ! -z "$ctx" ]] && ctx=8
  ictx=( -C "$ctx" )

  (( ${#incl[@]} == 0 )) && incl=( .texi .org )
  
  if (( ${#incl[@]} > 0 )); then

    for ext in "${incl[@]}"; do
      s="$ext"
      [[ (! -z "$fs") && ("$ext" == *"$fs"*) ]] && s=${ext//"$fs"/" "}
      for fltyp in $s; do
        isufx+=( --include="*$fltyp" )
      done
    done
    
  fi
    
  grep -rl "${isufx[@]}" "$ptrn" "${fdir[@]}" |
    while read f; do
      echo -e $(tput setaf 46)"==> $f <==\n"$(tput sgr0)
      grep -ni "${ictx[@]}" "$ptrn" "$f"
      echo ""
    done

}

答案1

在你的test函数中,你的开头有两行

  local fs=""  fdir=()  incl=()
  local dyn=0  ctx=0  fdir=""

注意如何将空字符串分配给fdir变量吗?

后来,你附加数据到fdir,将其用作数组。这会在数组的开头留下一个空元素fdir,这给您带来了您所描述的问题。

不要初始化fdir为空字符串。

相关内容