Posted by Anonymous on Wednesday, October 21, 2009 at 4:50pm.
correction: This is in Linux.
Try
find / today.odt
it will search all directories under root, including links.
For more options, type
man find
to read about the command find on Linux (man for manual).
Would this also work: find / -name "today.odt " -print
Yes it would.
The quotes are used to delimit regular expressions, for example if you want to find all files ending with .h or .c, you would type in
find / "*.[ch]" -print
If you don't put any metacharacters for regular expressions, it will be interpreted as is.
Related Questions
window XP - Which of the following is true of the Encrypting File System (EFS)? ...
operating system - in windows vista, how do you organize file list by file size?
operating system - a. What is the name and version number of the operating ...
bookkeeping - to complete tasks quickly and efficiently a operating system has ...
computer forensics - 1.Check the operating systems swap file. Using the ...
programming - How do I delete a file on my shared LAN network with vbs??? 1. The...
computer - Why adding only characters to a text file may increase the file'...
Linguistcs - I said I would file it on Thursday. 1.I said I would file the ...
operating system - If /home/jenny/draft and /home/alex/letter are links to the ...
C++ - File version maintenance utility A team of software developers has...
For Further Reading