write a program to display all the files from the current
directory which are created in particular month
Answer Posted / pitambar mishra
Mr. Rakesh,
It is a unix forum. You have written the program in C language. Please convert the program in to shell script.
Ans:
ls -l|grep -i sep
ls -l|awk '/Sep/ {print}'
ls -l|sed -n '/Sep/ p'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of shell script?
How to write a function?
How to debug the problems encountered in the shell script/program?
Which shell is the best?
What does $1 mean in bash?
Explain about gui scripting?
What is the crontab?
How to print the first array element?
Which is better perl or shell scripting?
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
How can any user find out all information about a specific user like his default shell, real-life name, default directory, when and how long he has been using the system?
Determine the output of the following command: name=shubham && echo ‘my name is $name’.
What are the various stages of a linux process it passes through?
What does path stand for?
Which scripting language is best for automation?