De acordo com a resposta de daveraja , aqui está um script bash que resolverá o propósito.
Considere uma situação se você estiver usando o C-shell e quiser executar um comando sem sair do contexto / janela do C-shell da seguinte forma,
Comando a ser executado : Pesquise a palavra exata 'Teste' no diretório atual recursivamente apenas em arquivos * .h, * .c
grep -nrs --color -w --include="*.{h,c}" Testing ./
Solução 1 : entre no bash do C-shell e execute o comando
bash
grep -nrs --color -w --include="*.{h,c}" Testing ./
exit
Solução 2 : escreva o comando pretendido em um arquivo de texto e execute-o usando o bash
echo 'grep -nrs --color -w --include="*.{h,c}" Testing ./' > tmp_file.txt
bash tmp_file.txt
Solução 3 : execute o comando na mesma linha usando o bash
bash -c 'grep -nrs --color -w --include="*.{h,c}" Testing ./'
Solução 4 : crie um sciprt (uma única vez) e use-o para todos os comandos futuros
alias ebash './execute_command_on_bash.sh'
ebash grep -nrs --color -w --include="*.{h,c}" Testing ./
O script é o seguinte,
#!/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