Need to list the files


 
Thread Tools Search this Thread
Operating Systems Solaris Need to list the files
# 1  
Old 09-12-2011
Question Need to list the files

Hi,

For Example: I have one month files like from August 1 to August31.

I want to list only from August 1 to august 15 files.

Please advice.

Thanks,
Mani
# 2  
Old 09-12-2011
The following should work for the specific case you outline
Code:
ls $(for i in $(seq 1 15); do printf "August\ 2d" $i;done)

seq just provides a sequence
printf bears further study, as it allows you format your output quite flexibly.

CORRECTION Sorry reviewed your question and the space is present in all cases rather than just as padding.
you could get away with
Code:
ls $(for i in $(seq 1 15); do echo "August\ $i";done)


Last edited by Skrynesaver; 09-12-2011 at 07:06 AM..
# 3  
Old 09-12-2011
Quote:
I want to list only from August 1 to august 15 files.
Do you mean that these files have such names or they were modified in this period?
# 4  
Old 09-12-2011
Valid question from yazu, If this is the case, try running
Code:
 ls -l| egrep '2011-08-(0[1-9]|1[0-5])'

# 5  
Old 09-12-2011
Hello.

This is example

Code:
-rw-r--r--   1 prodlog  ccusrs     29055 Aug 31 01:56 EBDD_status.log_A_110830
-rw-r--r--   1 prodlog  ccusrs     61773 Aug 31 01:56 FUI_GSA.log_A_110830
-rw-r--r--   1 prodlog  ccusrs      5909 Aug 31 01:56 FUI_GSA.stats_A_110830
-rw-r--r--   1 prodlog  ccusrs      1792 Aug 31 01:56 GCSX.BROKER.GDS.RESEND.FEED.BACKOUT.log_A_110830
-rw-r--r--   1 prodlog  ccusrs      1897 Sep  1 01:57 svrMLIS_IRINFO.log_A_110831
-rw-r--r--   1 prodlog  ccusrs      3909 Sep  1 01:57 svrMLISreconc.log_A_110831
-rw-r--r--   1 prodlog  ccusrs     63621 Sep  1 01:58 FUI_GSA.log_B_110831
-rw-r--r--   1 prodlog  ccusrs      5352 Sep  1 01:58 FUI_GSA.stats_B_110831
-rw-r--r--   1 prodlog  ccusrs    117400 Sep  1 01:58 FUI_GSA.log_C_110831
-rw-r--r--   1 prodlog  ccusrs     28543 Sep  2 01:56 EBDD_status.log_A_110901
-rw-r--r--   1 prodlog  ccusrs     88904 Sep  2 01:56 FUI_GSA.log_A_110901
-rw-r--r--   1 prodlog  ccusrs      8080 Sep  2 01:56 FUI_GSA.stats_A_110901
-rw-r--r--   1 prodlog  ccusrs     83258 Sep  3 01:57 gsa.cleanup.stats_A_110902
-rw-r--r--   1 prodlog  ccusrs        15 Sep  3 01:57 in781117_20110805124231741371.gxd_A_110902
-rw-r--r--   1 prodlog  ccusrs     69455 Sep  3 01:57 recycle_combined.log_A_110902
-rw-r--r--   1 prodlog  ccusrs    314849 Sep  3 01:57 svrArchivingReceive.log_A_110902
-rw-r--r--   1 prodlog  ccusrs       734 Sep  4 01:56 DistributeEvent.stats_A_110903
-rw-r--r--   1 prodlog  ccusrs     21872 Sep  4 01:56 EBDD_status.log_A_110903
-rw-r--r--   1 prodlog  ccusrs     28641 Sep  4 01:56 FUI_GSA.log_A_110903
-rw-r--r--   1 prodlog  ccusrs      3909 Sep  4 01:56 FUI_GSA.stats_A_110903

Note: Please see above there are files availables under Aug 31,Sep 1,2,3,4

I want to list only for Aug31,Sep1,2,3. Not for Sep 4th.

I hope that will be clear

Thanks,
Mani
Moderator's Comments:
Mod Comment
Please use code tags when posting data and code samples!

Last edited by vgersh99; 09-12-2011 at 10:13 AM.. Reason: code tags, please!
# 6  
Old 09-13-2011
Code:
ls -l | egrep '(Aug[:space:]+31|Sep[:space:]+(1|2|3))'

# 7  
Old 09-13-2011
Code:
$ ls -ltr | egrep "Aug  [1-9]|Aug 1[0-5]"

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Comparing two files and list the difference with common first line content of both files

I have two file as given below which shows the ACL permissions of each file. I need to compare the source file with target file and list down the difference as specified below in required output. Can someone help me on this ? Source File ************* # file: /local/test_1 # owner: own #... (4 Replies)
Discussion started by: sarathy_a35
4 Replies

2. Shell Programming and Scripting

List all the files in the present path and Folders and subfolders files also

Hi, I need a script/command to list out all the files in current path and also the files in folder and subfolders. Ex: My files are like below $ ls -lrt total 8 -rw-r--r-- 1 abc users 419 May 25 10:27 abcd.xml drwxr-xr-x 3 abc users 4096 May 25 10:28 TEST $ Under TEST, there are... (2 Replies)
Discussion started by: divya bandipotu
2 Replies

3. Shell Programming and Scripting

Copy list of files from a keyword list to another directory

Hello, I have a folder with a massive amount of files, and I want to copy out a specific subset of the files to a new directory. I would like to use a text file with the filenames listed, but can't get it to work. The thing I'm hung up on is that the folder names in the path can and do have... (5 Replies)
Discussion started by: twjolson
5 Replies

4. Shell Programming and Scripting

Take a list if strings from a file and search them in a list of files and report them

I have a file 1.txt with the below contents. -----cat 1.txt----- 1234 5678 1256 1234 1247 ------------------- I have 3 more files in a folder -----ls -lrt------- A1.txt A2.txt A3.txt ------------------- The contents of those three files are similar format with different data values... (8 Replies)
Discussion started by: realspirituals
8 Replies

5. Shell Programming and Scripting

List files only when a certain number of files match

Hi, I have many files named CCR20110720011001.CTRD CCR20110720011501.CTRD CCR20110720012001.CTRD CCR20110720012501.CTRD CCR20110720021001.CTRD ... (9 Replies)
Discussion started by: shadyfright
9 Replies

6. Shell Programming and Scripting

how to copy files followed by list of names of all the files in /etc?

....... (2 Replies)
Discussion started by: pcbuilder
2 Replies

7. Shell Programming and Scripting

find list of files from a list and copy to a directory

I will be very grateful if someone can help me with bash shell script that does the following: I have a list of filenames: A01_155716 A05_155780 A07_155812 A09_155844 A11_155876 that are kept in different sub directories within my current directory. I want to find these files and copy... (3 Replies)
Discussion started by: manishabh
3 Replies

8. UNIX for Dummies Questions & Answers

Find files and display only directory list containing those files

I have a directory (and many sub dirs beneath) on AIX system, containing thousands of file. I'm looking to get a list of all directory containing "*.pdf" file. I know basic syntax of find command, but it gives me list of all pdf files, which numbers in thousands. All I need to know is, which... (4 Replies)
Discussion started by: r7p
4 Replies

9. Shell Programming and Scripting

I need a script to find socials in files and output a list of those files

I am trying to find socail security numbers in files in (and under) a specific directory and output a list of the files where they are found... the format would be with no dashes just 9 numeric characters in a row. I have tried this: find /DirToLookIn -exec grep '\{9\}' /dev/null {} \; >>... (1 Reply)
Discussion started by: NewSolarisAdmin
1 Replies

10. UNIX for Dummies Questions & Answers

counting a list of string in a list of txt files

Hi there! I have 150 txt files named chunk1, chunk2, ........., chunk150. I have a second file called string.txt with more than 1000 unique strings, house, dog, cat ... I want to know which command I should use to count how many times each string appears in the 150 files. I have tried... (4 Replies)
Discussion started by: Pep Puigvert
4 Replies
Login or Register to Ask a Question