directory hierarchy

How To Find Files by Content Under UNIX

by Vivek Gite on September 21, 2008 · 16 comments

Q. I had written lots of code in C for my school work and saved it as source code under /home/user/c/*.c and *.h. How do I find files by content such as string or words (function name such as main() under UNIX shell prompt?

{ 16 comments }

Howto: Find A File In Linux Operating Systems

by Vivek Gite on December 15, 2007 · 0 comments

How Do I find a file in Linux operating systems?

{ 0 comments }

Search For Files In Bash

by Vivek Gite on February 15, 2007 · 0 comments

How do I search for file in Bash?

{ 0 comments }

Q. How do I search Linux box for a file? A. You need to use find command, which search for files in a directory hierarchy (file system) and prints information about the files it found. It is run like as follows: find {dir-name} -name {file-name} Find command examples Find out file called foo.txt: # find [...]

{ 8 comments }