Jim wants to alias the grep command to the string search. Choose the command that Jim should
add to his .
kshrc file to accomplish this alias.
A.
alias search = ‘grep -i’
B.
alias search=’grep -i’
C.
alias search =’grep -i’
D.
alias search=`grep -i`
Explanation: