I enter two command in bash:
$export g='grep "something"'
$echo "something and another thing" | $g
But it doesn't work.
I want the second command to be evaluated by bash as : echo "something and another thing" | grep "something"
What should I do for that?