動作しない変数で find を使用する [重複]

動作しない変数で find を使用する [重複]

配列で宣言されていないファイルをインポートするには、findコマンドを使用する必要があります。

# ALLOWED extensions
ext_allowed=("*.cs" "*.csproj" "*.sln" "*.json")

combined=""
for ext in "${ext_allowed[@]}"; do
        combined="$combined -not -name \"$ext\""
done

# This doesn't work :(
find $location $combined -not -type d

# This does work, but it looks the same??
find $location -not -name "*.cs" -not -name "*.csproj" -not -name "*.json" -not -name "*.sln" -not -type d

変数の位置は単にファイルの場所を保持します。 -o オプションも試してみましたが、やはり動作しません。

誰でも私を助けることができますか?ありがとう

ベストアンサー1

文字列を作成する代わりにcombined配列にします。

for ext in "${ext_allowed[@]}"; do
        combined+=($ext)
done

その後、パラメータ拡張を使用する必要があります。 (望むよりhttps://wiki.bash-hackers.org/syntax/pe#search_and_replace)

find "$location" "${combined[@]/#/'-not -name '}" -not -type d

おすすめ記事