using find command

i want to find the file msk_Rco_ijkl_20070925_033743.Z
i am using the below command but it is returning with the below metioned error
how to solve it
find . -name 'msk_Rco_ijkl_*' -mtime -60 -print
find: bad option msk_Rco_ijkl_20070925_033743.Z
find: [-H | -L] path-list predicate-list

find . -name msk_Rco_ijkl_\* -mtime -60 -print

hi
i gave the command like u mentioned
but i am getting things like

find: bad option msk_Rco_ijkl_20070925_033743.Z
find: [-H | -L] path-list predicate-list

i want only the file name not other things
how to do it

Try it without quotes:

find . -name msk_Rco_ijkl_* -mtime -60 -print

Regards

What the heck - it works for me with quotes, without quotes:

$ ls tmp/msk_Rco_ijkl_20070925_033743.Z
tmp/msk_Rco_ijkl_20070925_033743.Z
$ find . -name 'msk_Rco_ijkl_*' -mtime -60 -print
./tmp/msk_Rco_ijkl_20070925_033743.Z
$ find . -name msk_Rco_ijkl_* -mtime -60 -print
./tmp/msk_Rco_ijkl_20070925_033743.Z

Interestingly, when I supplied a bad argument, got this:

$ find -z
find: path-list predicate-list

Didn't get any mention of -H | -L. You may want to check the man for your version of find and see some examples for the supplied syntax.

i am just giving this thing

find . -name msk_Rco_ijkl_* -mtime -60 -print

and i am getting

find: bad option msk_Rco_ijkl_123.Z
find: [-H | -L] path-list predicate-list

could you please tell us which OS, which version and which find you are using. Pls. put here the output of the folling commands:

# uname -a
# which find

bakunin

Just giving this, how can your system print out the complete name of the file that you are looking for?
find: bad option msk_Rco_ijkl_123.Z
I can't understand this

You may need to give a scape character before the wildcar:
find . -name msk_Rco_ijkl_\* -mtime -60 -print

bye