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
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.