I have a file test.txt which contains this text data
# cat test.txt
*@=>*@
if I use grep to check if the string is in the file using this way
# grep "*@=>*@" test.txt
#
it returns nothing..
while if I grep a partial string search
# grep "*@=>" test.txt
# *@=>*@
it works correctly ..
Why in the first case do grep return nothing ?