Common UNIX Find Commands
One of the most useful utilities in the UNIX systems resources directory is the find command. System administrators use this powerful utility frequently. Here are a few common tasks performed by the ubiquitous find command. I’ll add more as time goes on. # cd /export/home/esofthub Find a file or directory# find . -name TEMP -printor#
awk: Find and Replace text
Syntax awk <options> ‘Program’ Input-File1 Input-File2 … awk -f PROGRAM-FILE <options> Input-File1 Input-File2 … If no Input-File is specified then `awk’ applies the Program to “standard input”, (piped output of some other command or the terminal. Typed input will continue until end-of-file (typing `Control-d’) Basic functions The basic function of awk is to search files
Read More