daverajaの回答に従って、目的を解決するbashスクリプトを次に示します。
Cシェルを使用している場合の状況を考慮してくださいていて、次のようにCシェルのコンテキスト/ウィンドウを離れずにコマンドを実行するます。
実行するコマンド:*。h、*。cファイルでのみ現在のディレクトリで正確な単語「Testing」を再帰的に検索します
grep -nrs --color -w --include="*.{h,c}" Testing ./
解決策1:Cシェルからbashに入り、コマンドを実行します
bash
grep -nrs --color -w --include="*.{h,c}" Testing ./
exit
解決策2:目的のコマンドをテキストファイルに書き込み、bashを使用して実行します
echo 'grep -nrs --color -w --include="*.{h,c}" Testing ./' > tmp_file.txt
bash tmp_file.txt
解決策3:bashを使用して同じ行でコマンドを実行する
bash -c 'grep -nrs --color -w --include="*.{h,c}" Testing ./'
解決策4:sciprtを(1回)作成し、それを今後のすべてのコマンドに使用する
alias ebash './execute_command_on_bash.sh'
ebash grep -nrs --color -w --include="*.{h,c}" Testing ./
スクリプトは次のとおりです。
#!/bin/bash
E_BADARGS=85
if [ ! -n "$1" ]
then
echo "Usage: `basename $0` grep -nrs --color -w --include=\"*.{h,c}\" Testing ."
echo "Usage: `basename $0` find . -name \"*.txt\""
exit $E_BADARGS
fi
TMPFILE=$(mktemp)
argList=""
for arg in "$@"
do
if echo $arg | grep -q " "; then
argList="$argList \"$arg\""
else
argList="$argList $arg"
fi
done
argList=$(echo $argList | sed 's/^ *//')
echo "$argList" >> $TMPFILE
last_command="rm -f $TMPFILE"
echo "$last_command" >> $TMPFILE
check_for_last_line=$(tail -n 1 $TMPFILE | grep -o "$last_command")
if [ "$check_for_last_line" == "$last_command" ]
then
bash $TMPFILE
exit 0
else
echo "Something is wrong"
echo "Last command in your tmp file should be removing itself"
echo "Aborting the process"
exit 1
fi