ตามคำตอบของdaverajaนี่คือสคริปต์ทุบตีซึ่งจะช่วยแก้วัตถุประสงค์
พิจารณาสถานการณ์หากคุณใช้C-shellและคุณต้องการดำเนินการคำสั่งโดยไม่ต้องออกจากบริบท / หน้าต่าง C-shell ดังนี้
คำสั่งที่จะดำเนินการ : ค้นหาคำว่า 'การทดสอบ' ในไดเร็กทอรีปัจจุบันแบบวนซ้ำเฉพาะในไฟล์ * .h, * .c
grep -nrs --color -w --include="*.{h,c}" Testing ./
โซลูชันที่ 1 : เข้าสู่ bash จาก C-shell และดำเนินการคำสั่ง
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 (ครั้งเดียว) และใช้สำหรับคำสั่งในอนาคตทั้งหมด
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