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
How can I send a mail with a compressed file as an attachment?
Why should we use shell scripts?
What is bash used for?
What are the different commands available to check the disk usage?
How do I run a shell script on a mac?
How to print all array elements and their respective indexes?
How do I debug a shell script?
c program which behaves like a shell(command interpreter). it has its own prompt say "NewShell$".any normal shell command is executed from your shell by starting a child process to execute a system program corrosponding to the command
How to get script name inside a script?
Write a command sequence to find all the files modified in less than 2 days and print the record count of each.
Why is shell scripting important?
What language is bash?
What is the significance of $#?
Explain about "s" permission bit in a file?
What does path stand for?