search file

Bash: Pass Shell Variables To awk

by Vivek Gite on April 19, 2011 · 0 comments

How do I pass shell variables to awk command or script under UNIX like operating systems?

{ 0 comments }

UNIX Find A File Command

by Vivek Gite on May 14, 2008 · 12 comments

I’ve just started to use Sun Solaris UNIX in our Labs. I’d like to know more about finding files from from the shell prompt. How do I find a file under UNIX?

{ 12 comments }

Grep Words From a File

by Vivek Gite on February 6, 2008 · 0 comments

Q. How do I grep words from a text file under UNIX / Linux / BSD operating systems?

{ 0 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 }

How do I use grep command in Linux?

{ 174 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 }

Q. How do I list or find all the files owned by a particular system user or group under Linux or UNIX operating system? A. Only find command (search for files in a directory hierarchy) got options that allow you to search files owned by a specific user or groups. Find file owned by group [...]

{ 2 comments }