Display file name

 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions Display file name
# 1  
Old 09-23-2011
Display file name

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!

1. The problem statement, all variables and given/known data:
I have a directory called "Month" which has 12 files named on months.

/home/months> touch Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec

I need to display the list of file from Jan to Jun (using sed or grep)?

2. Relevant commands, code, scripts, algorithms:

NA

3. The attempts at a solution (include all code and scripts):

NA

4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):
Amity,Noida,India, Sanjeev Thakur, MCA

Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).
# 2  
Old 09-23-2011
We won't do your homework for you, so unless you show some effort and tell us what you've tried so far we won't support any cheating on your part.
# 3  
Old 09-23-2011
Ok... fine...but I am not getting anything in my mind.... Please provide me some hint, so I can try to think about it....
# 4  
Old 09-23-2011
why dont you write the logic in your own english words ( step by step )
then, we see what are the commands we can use it to achieve your output
# 5  
Old 09-30-2011
Try reading the man pages on sed and grep. It is not as hard as you think. You can use the | (pipe) command.
# 6  
Old 10-20-2011
I guess
Code:
cat Jan Feb Mar Apr Mar Jun Jul

is out of question, right? Smilie

Well, why don't you create an environmental variable with the contents "Jan Feb ... Dec". That will make your life much easier.
Then you can play with "cut" command. You can set the field range of 1-6, be sure to define the delimiter to space (quote it) and if you need the contents of the files, backquote them to a cat command.

That's fast and dirty.

If you need something more elaborate, consider using an interpreted language that supports hash tables (dictionaries) like perl or python.
Something like
{'Jan':1, 'Feb':2, ... 'Dec':12 }
And sort it by value.

Hope that helps.
# 7  
Old 10-24-2011
Here you have shared shared good and helpful information for need people. Keep it up always.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Display file date after grepping a string in the file

Hi All, I need to recursively grep several folders for a MAC address and display the results with the date of the file name at the start. Even better would be if the final results were displayed chronologically so the newest file is always at the end. Oldest at the top, regardless of what... (8 Replies)
Discussion started by: quemalr
8 Replies

2. Shell Programming and Scripting

File Name needs to display

I am new to shell scripting plz help me to get solution for below requirement - If name.sh file is present, message will be displayed as “name.sh is present” else "name.sh is not present" I have tested below script but getting error. #!/bin/ksh file_found=`ls name.sh` found=`echo $?` if... (6 Replies)
Discussion started by: rahulbahulekar
6 Replies

3. Homework & Coursework Questions

adding rows of a file and display in another file

How to add these all ( 1 1 0 1 1 0 1 0 0 0 1 5 8 0 12 10 25) in the script and How to calculate the GPA?? :wall: For example a course record file can be like this: COURSE NAME: Operating Systems CREDITS: 4 123456 1 1 0 1 1 0 1 0 0 0 1 5 8 0 12 10 25 243567 0 1 1 0 1 1 0 1 0 0 0 7 9 12 15 17 15... (1 Reply)
Discussion started by: poonam29
1 Replies

4. Shell Programming and Scripting

adding rows of a file and display in another file

How to add these all ( 1 1 0 1 1 0 1 0 0 0 1 5 8 0 12 10 25) in the script and How to calculate the GPA?? :wall: For example a course record file can be like this: COURSE NAME: Operating Systems CREDITS: 4 123456 1 1 0 1 1 0 1 0 0 0 1 5 8 0 12 10 25 243567 0 1 1 0 1 1 0 1 0 0 0 7 9 12 15 17 15... (1 Reply)
Discussion started by: poonam29
1 Replies

5. Shell Programming and Scripting

Grep a pattern given in one file at other file and display its corresponding contents as output.

***************************************** Right now i have this current system. I have two files say xxx.txt and yyy.txt. xxx.txt is with list of patterns within double quotes. Eg. "this is the line1" "this is the line2" The yyy.txt with lot of lines. eg: "This is a test message which... (7 Replies)
Discussion started by: abinash
7 Replies

6. Shell Programming and Scripting

Grep pattern from different file and display if it exists in the required file

Hi, I have two files say xxx.txt and yyy.txt. xxx.txt is with list of patterns within double quotes. Eg. "this is the line1" "this is the line2" The yyy.txt with lot of lines. eg: "This is a test message which contains rubbish information just to fill the page which is of no use. this is... (3 Replies)
Discussion started by: abinash
3 Replies

7. Programming

Display file

I am making a program in c. I want the progrm to be able to display file names ( like in unix we do long lisiting) what should i do? Any help will be appreciated (3 Replies)
Discussion started by: programlover
3 Replies

8. Shell Programming and Scripting

Display File

I have a file xx like this abc abcd abc abcd abcd efgh ijkl mnop qrst uv wxyz Now I want to search for "abcd". After the last found, it will display the remaining of the file. So here I am expecting something like abcd efgh ijkl mnop qrst uv wxyz (5 Replies)
Discussion started by: joy_deep
5 Replies

9. UNIX for Dummies Questions & Answers

Display File

I have a file xx like this abc abcd abc abcd abcd efgh ijkl mnop qrst uv wxyz Now I want to search for "abcd". After the last found, it will display the remaining of the file. So here I am expecting something like abcd efgh ijkl mnop qrst uv wxyz (2 Replies)
Discussion started by: joy_deep
2 Replies
Login or Register to Ask a Question