![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| row count of all files with more than 0 byte | sri2005 | UNIX for Dummies Questions & Answers | 6 | 04-29-2008 06:39 PM |
| Provide a count of files | keymind | UNIX for Dummies Questions & Answers | 5 | 12-30-2007 01:57 PM |
| count of files | mahalakshmi | Shell Programming and Scripting | 13 | 11-28-2006 09:01 AM |
| command to count files in dir | balireddy_77 | Shell Programming and Scripting | 4 | 11-15-2006 01:56 AM |
| Count number of files in subdirectories | cbeverly | UNIX for Dummies Questions & Answers | 2 | 06-02-2005 04:06 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Display the count of files
I am new to shell programming. Can anyone help me out with anyone of these?
Display a count of the number of regular files, the number of symbolic links, the number of sub-directories, the number of block-special files, and the number of character-special files in the directory. I don't know how to do any of them. If you can help with one, I'm sure I can figure out the rest. Any help is useful. Thanks. |
|
||||
|
Thanks both of you. Both answers proved to be very useful. I now have a much better understanding of find and wc. also, I now feel very confident about the pipe key, whereas before I was somewhat unsure about it. thanks again.
-Kevin |
|
||||
|
Quote:
Code:
# ls -l | awk '/^-/'|wc -l
184
# ls -l | awk '/^-/{c++}END{print c}'
184
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|