what is diff between grep and find
Answers were Sorted based on User's Feedback
Answer / shalu
grep is used for finding any string in the file.
syntax - grep <String> <filename>
example - grep 'compu' details.txt
display the whole line,in which line compu string is found.
find is used to find the file or directory in given path,
syntax - find <filename>
example - find compu*
display aal file name starting with compu
| Is This Answer Correct ? | 28 Yes | 2 No |
Answer / lokesh
grep searches pattern in the file
where find command searches the pattern .but major
differencce of find commands is it evaluates
expression given precedences to dir ,filename and
evaluated value will be searched in directory or in file
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / usha
find command will look for a perticuler file formet
Grep command will take all PATTERN of files
| Is This Answer Correct ? | 0 Yes | 1 No |
I have a source file its is CSV(comma separated). I want to convert it to tab separated. Make sure the conversion happens on all commas except the ones enclosed in Double quotes .
What are the uses of a Parameter file?
What is the difference between SOURCE and TARGET BASED COMMITS?
What happens if you increase commit intervals and also decrease commitExplain grouped cross tab?
Why touse stored procedure in ETL Application?
What is workflow monitor?
How to elaborate tracing level?
I HAVE A SOURCE FILE CONTAINING 1|A,1|B,1|C,1|D,2|A,2|B,3|A,3|B AND IN TARGET I SHOULD GET LIKE 1|A+B+C+D 2|A+B 3|A+B WHICH TRANSFORMATION I SHOULD USE
whatis the default data driven operation in informatica
What are the circumstances that infromatica server results an unreciverable session?
how we do performence tuning in informatica
Source is a flat file and want to load unique and duplicate records separately into two separate targets; right??