Sponsored Content
Top Forums UNIX for Dummies Questions & Answers unix command to cound the number of files in a folder Post 302184319 by krishmaths on Friday 11th of April 2008 06:55:54 AM
Old 04-11-2008
Quote:
Originally Posted by manas6
Hi Duke

Thanks for the information its working.

I have one more clarification.

if I have a directory among the files and that particular directory have some more files. What to do in this regard.

I have tried with ls -R| wc -l
but it is giving the working count. Giving one extra couont.
Thanks in advance
In that case, use this command
Code:
find ./ -type f | wc -l

It will find all files recursively and count them.
 

10 More Discussions You Might Find Interesting

1. Programming

unix C++: get the files from a folder

Hello everybody! How can I get the list of files from a folder in C++ (unix)? thanks in advance for any help! regards (2 Replies)
Discussion started by: nadiamihu
2 Replies

2. UNIX for Dummies Questions & Answers

How to learn the number of files under a particular folder, containing subfolders

Hi ALL I would like know how many files there under a particular folder, which contains subfolders. Thanks (5 Replies)
Discussion started by: cy163
5 Replies

3. UNIX for Advanced & Expert Users

UNIX: Command to compress folder and all files into a tar

I am trying to grab a folder and all the folders and files underneath it and send it from one computer to another. I basically want to compress the whole folder into a tar, tgz, or zip file so that it can be sent as one file. is there a command to compress a folder and all its contents into a tar... (7 Replies)
Discussion started by: kane4355
7 Replies

4. UNIX for Dummies Questions & Answers

Unix command to count the number of files with specific characters in name

Hey all, I'm looking for a command that will search a directory (and all subdirectories) and give me a file count for the number of files that contain specific characters within its filename. e.g. I want to find the number of files that contain "-a.jpg" in their name. All the searching I've... (6 Replies)
Discussion started by: murphysm
6 Replies

5. Shell Programming and Scripting

For loop for number of files in a folder

Hi All, Need a for loop which should run for number of files in a folder and should pass the file name as parameter to another shell script for each loop. Please help me. Thanks. (2 Replies)
Discussion started by: chillblue
2 Replies

6. Shell Programming and Scripting

Total number of files in the folder should be listed

Hi All, When i give the ls -lrt to list out all files with total number of files , i get the output as ls -lrt total 72 -rw-r--r-- 1 hari staff 796 Jul 11 09:17 va.txt -rw-r--r-- 1 hari staff 169 Jul 13 00:20 a.log -rwxr-xr-x 1 hari staff 659 Aug... (9 Replies)
Discussion started by: Kalaihari
9 Replies

7. UNIX for Dummies Questions & Answers

UNIX - command to count number of files in subdirectories

I have a folder named test/ and under that I have multiple directories and in each of the directory I have multiple log files. I want to know how many files exists under each sub directory. test |--quanrantine |--logfile1 |--logfile2 |--spooling |--logfile1 ... (4 Replies)
Discussion started by: ravikirankethe
4 Replies

8. Shell Programming and Scripting

Split a folder with huge number of files in n folders

We have a folder XYZ with large number of files (>350,000). how can i split the folder and create say 10 of them XYZ1 to XYZ10 with 35,000 files each. (doesnt matter which files go where). (12 Replies)
Discussion started by: AlokKumbhare
12 Replies

9. Shell Programming and Scripting

awk error when increasing number of files in folder

I have a folder with several files of which I want to eliminate all of the terms that they have in common using `awk`. Here is the script that I have been using: awk ' FNR==1 { if (seen++) { firstPass = 0 outfile = FILENAME "_new" ... (4 Replies)
Discussion started by: owwow14
4 Replies

10. UNIX for Beginners Questions & Answers

Is there a UNIX command that can compare fields of files with differing number of fields?

Hi, Below are the sample files. x.txt is from an Excel file that is a list of users from Windows and y.txt is a list of database account. $ head -500 x.txt y.txt ==> x.txt <== TEST01 APP_USER_PROFILE USER03 APP_USER_PROFILE TEST02 APP_USER_EXP_PROFILE TEST04 APP_USER_PROFILE USER01 ... (3 Replies)
Discussion started by: newbie_01
3 Replies
SVN-CLEAN(1)							   User Commands						      SVN-CLEAN(1)

NAME
svn-clean - Wipes out unversioned files from Subversion working copy SYNOPSIS
svn-clean [options] [directory or file ...] DESCRIPTION
svn-clean will scan the given files and directories recursively and find unversioned files and directories (files and directories that are not present in the Subversion repository). After the scan is done, these files and directories will be deleted. Files which match patterns in the svn-clean:ignore dir property will be spared, much as the svn:ignore property works for svn status. If no file or directory is given, svn-clean defaults to the current directory ("."). svn-clean uses the SVN Perl modules if they are available. This is much faster than parsing the output of the svn command-line client. OPTIONS
-e, --exclude A regular expression for filenames to be exluded. For example, the following command will skip files ending in ".zip": svn-clean --exclude '.zip$' Multiple exclude patterns can be specified. If at least one matches, then the file is skipped. For example, the following command will skip files ending in ".jpg" or ".png": svn-clean --exclude '.jpg$' --exclude '.png$' The following command will skip the entire "build" subdirectory: svn-clean --exclude '^build(/|$)' -f, --force Files to which you do not have delete access (if running under VMS) or write access (if running under another OS) will not be deleted unless you use this option. -N, --non-recursive Do not search recursively for unversioned files and directories. Unversioned directories will still be deleted along with all their contents. -q, --quiet Do not print progress info. In particular, do not print a message each time a file is examined, giving the name of the file, and indicating whether "rmdir" or "unlink" is used to remove it, or that it's skipped. -p, --print Do not delete anything. Instead, print the name of every file and directory that would have been deleted. -?, -h, --help Prints a brief help message and exits. --man Prints the manual page and exits. AUTHOR
Simon Perreault <nomis80@nomis80.org> 2014-03-12 SVN-CLEAN(1)
All times are GMT -4. The time now is 05:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy