Unix General Question:
Download Questions PDF

Using Unix command how to display no of records in oracle?

Unix General Interview Question
Unix General Interview Question

Answer:

>wc -l filename

Example:cat>file
1 abc 100
2 def 200
3 ghi 300
4 ijk 500

>wc -l file
4 file

Download Unix General Interview Questions And Answers PDF

Previous QuestionNext Question
Finding the presence of a word in a list of n files (pattern matching)?How to find multiple string?