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 |
Define update strategy?
How to differentiate between the active and passive transformations?
What is the status code in stored procedure transformation?
In which transformation you cannot drag ports into it?
connected and unconnected lookups?
What are the parts of Informatica Server?
What is meant by LDAP users?
how do u use sequence created in oracle in informatica? Explain with an simple example
why u go for dimensions ?
If you want to create indexes after the load process which transformation you choose?
How to generate sequence numbers using expression transformation?
My sql query is 1. select 1+x from dual? 2. select 1+'x' from Dual? 3. Select x+1 from dual? what is the out put of the above queries?