bashでエラーなしで次のコマンドを実行できます。
$ find /d/Code/Web/Development/Source/ \( -name '*.cs' -o -name '*.cshtml' \) -exec grep -IH UserProfileModel {} \;
このコマンドをすばやく実行するために、.bash_aliasesに関数を作成しました。
search() {
local file_type file_types find_cmd opt OPTARG OPTIND or pattern usage
usage="Usage: search [OPTION] ... PATTERN [FILE] ...
Search for PATTERN in each FILE.
Example: search -t c -t h 'hello world' /code/internal/dev/ /code/public/dev/
Output control:
-t limit results to files of type"
if [[ $1 == --help ]]; then
echo "$usage"
return
fi
file_types=()
while getopts ":t:" opt; do
case $opt in
t)
file_types+=("$OPTARG")
;;
?)
echo "$usage"
return
;;
esac
done
shift $((OPTIND-1))
if (( $# == 0 )); then
echo "$usage"
return
fi
pattern=$1
shift
if (( $# == 0 )); then
echo "$usage"
return
fi
find_cmd=(find "$@" '\(')
or=""
for file_type in "${file_types[@]}"; do
find_cmd+=($or -name \'*.$file_type\')
or="-o"
done
find_cmd+=('\)' -exec grep -IH "$pattern" {} '\;')
"${find_cmd[@]}"
}
ただし、関数でエラーが発生します。
find: paths must precede expression
最後の行をに変更すると、上記とecho "${find_cmd[@]}"
同じコマンドが印刷されます。
$ search -t cs -t cshtml UserProfileModel /d/Code/Web/Development/Source/
find /d/Code/Web/Development/Source/ \( -name '*.cs' -o -name '*.cshtml' \) -exec grep -IH UserProfileModel {} \;
コンソールで実行すると機能しますが、関数内で実行すると失敗する理由を理解できません。
また、関数をコマンドで減らすと機能します。
search() {
find /d/Code/Web/Development/Source/ \( -name '*.cs' -o -name '*.cshtml' \) -exec grep -IH UserProfileModel {} \;
}
Notepad ++で.bash_aliasesを編集していますが、行末がUnix形式であることを確認しました。
編集する
以下のF. Hauriの提案に従ってデバッグを有効にしました。明らかに、これは実行された実際のコマンドです。
find /d/Code/Web/Development/Source/ '\(' -name ''\''*.cs'\''' -o -name ''\''*.cshtml'\''' '\)' -exec grep -IH UserProfileModel '{}' '\;'
この情報をどのように解釈するのかわかりません。角かっこの前にエスケープ文字を削除すると、他のエラーが発生します。
find: missing argument to -exec
答え1
ヒント:set -x
トラッキングモードを有効にするには実行してください。 Bash は各コマンドを実行する前に印刷します。set +x
トレースモードをオフにするには実行してください。
+ find . '\(' '\)' -exec grep -IH needle '{}' '\;'
最後のパラメータがどのようにfind
置き換えられるか\;
を見てください;
。左右の角かっこにも同じ問題があります。ソースからセミコロンを2回引用しました。変化
find_cmd=(find "$@" '\(')
…
find_cmd+=('\)' -exec grep -IH "$pattern" {} '\;')
到着
find_cmd=(find "$@" '(')
…
find_cmd+=(')' -exec grep -IH "$pattern" {} ';')
または
find_cmd=(find "$@" \()
…
find_cmd+=(\) -exec grep -IH "$pattern" {} \;)
また、-name \'*.$file_type\'
無効な引用符があります。名前が一重引用符で始まり、終わるファイルを探しています。これを実行します-name "*.$file_type"
(*
現在のディレクトリに一致するファイルがある場合は引用符が必要です。二重引用符を省略する理由がわからない場合は、変数拡張子を二重引用符で囲む必要があります)。
答え2
走る強く打つコマンドの使い方ソート
試してみましょう:
find /tmp \( -type f -o -type d \) -ls
うわー、出力がたくさん出ますね…
今は大丈夫です:
cmd_list=(find /tmp \()
cmd_list+=(-type f)
cmd_list+=(-o -type d)
cmd_list+=(\) -ls)
"${cmd_list[@]}"
うーん…同じですね!
find /tmp \( -type f -o -type d \) -ls 2>/dev/null | md5sum
eb49dfe4f05a90797e444db119e0d9bd -
"${cmd_list[@]}" 2>/dev/null| md5sum
eb49dfe4f05a90797e444db119e0d9bd -
さて、最後に:
printf "%q " "${cmd_list[@]}";echo
find /tmp \( -type f -o -type d \) -ls
しかし、
printf "%s " "${cmd_list[@]}";echo
find /tmp ( -type f -o -type d ) -ls
私のフルランバージョン:
配列をコマンドとして使用する例
search() {
local OPTIND=0 _o _usage _debug=false
local -a _t _g _cmd=(find)
read -rN9999 _usage <<-EOUsage
Usage: $FUNCNAME [-a] [-d] [-i] [-I] [-H] [-l] [-t type [-t type]] \\
/path/ [path2/ ../path3/] pattern
-t .ext specifying an extension to search for
-d debug, will dump command variable before execution
-[aiIHl] are 'grep' argument, see: man grep.
many type and many path could be given but only one pattern.
EOUsage
while getopts 't:aiIHld' _o ;do
case $_o in
d) _debug=true ;;
t) _t+=(${_t+-o} -name \*.${OPTARG}) ;;
[aiIHl]) _g+=(-$_o) ;;
*) echo "${_usage%$'\n'}" ; return 1 ;;
esac
done
_cmd+=(${@:OPTIND:$#-$OPTIND} -type f)
((${#_t[@]})) && _cmd+=(\( "${_t[@]}" \))
_cmd+=(-exec grep ${_g[@]} ${@:$#} {} +)
$_debug && declare -p _cmd
"${_cmd[@]}"
}
ケア<<-EOUsage
部分の最初の文字EOUsage
〜しなければならないフォームを作ろう!このスクリプトをダウンロードできますそこまたは次のように.txt
:そこに。
メモ:一部のgrep
パラメータは関数に提供することができますsearch
。
search -t txt -Il /tmp/path /home/user 'invoice\|bill'