Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. beginer

    How to import Excel file in VC++ application

    I have to read Excel Sheet using my VC++ Application. But I do not know hoe to go about I understand they are CSV files. Any help or clue is highly appreciated
  2. beginer

    How can I find the number of lines of a text file?

    Thank you all for the valuable suggestion!!! Now I finally have made it work by using the following command:<br><br>wc -l `find . -type f` <br>or<br>wc -l $(find . -type f)<br><br>find. -type f -exec wc -l {} \; did the same job, but it does not use the command substitution which is required by...
  3. beginer

    How can I find the number of lines of a text file?

    Hi, there,<br>I am new to UNIX and I just got an assignment to find the number of lines of all text files in my current and subsequent directories by using FIND command and command substitution.I know I can use<br>tail -n 1 $(find . -type f)<br>to display the last line of each of the files...

Part and Inventory Search

Back
Top