0 votes
90 views
in Linux by
recategorized by
Can anyone suggest a better way to find files in the Linux cmd? I tried to google, but too many results and confusion

1 Answer

0 votes
by

You can try find /etc -type f -name file1.txt

This command will help to find the file1.txt under the etc directory

...