I would like to grep something like ==> *.sh <==. But it doesn\'t work, I can grep everything up to .sh <== but not get the wild card to work.
==> *.sh <==
.sh <==
You need to grep for something like "==> .*\.sh <=="
"==> .*\.sh <=="
The .* part matches any character for any length, the \. part matches a dot.
.*
\.