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 is the conditional statement in shell scripting?
How to find all the files modified in less than 3 days and save the record in a text file?
Write a script to print the first 10 elements of fibonacci series.
Explain how you Automate your application using Shell scripting.
How will you pass and access arguments to a script in linux?
What is the fastest scripting language?
Is shell and terminal the same?
What are the two files of crontab command?
Is powershell a language?
Is it possible to substitute "ls" command in the place of "echo" command?
Explore about environment variables?
How does ls command work?
What language is used in terminal?
What is wc in shell script?
What is another name for a bash shell script that you might see?