|
Home > Archive > Unix Shell > December 2007 > To find a filename in all paths and directories..
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
To find a filename in all paths and directories..
|
|
| marconi 2007-12-19, 1:23 pm |
| Hi,
What command in Unix, we use to find the Filename - $data_file_name in
all paths and directories ?
Request you to pls lemme know ..
Thanks a lot in advance.
| |
| Lew Pitcher 2007-12-19, 1:23 pm |
| On Dec 19, 9:33 am, marconi <kirankumar.te...@gmail.com> wrote:
> Hi,
>
> What command in Unix, we use to find the Filename - $data_file_name in
> all paths and directories ?
>
> Request you to pls lemme know ..
find / -name "$data_file_name" -print
|
|
|
|
|