what is the use of wild cards?
Answers were Sorted based on User's Feedback
Answer / bharath
? Matches any one character in a filename.
* Matches any character or characters in a filename.
[ ] Matches one of the characters included inside
the [ ] symbols.
| Is This Answer Correct ? | 6 Yes | 0 No |
What does sed command do in unix?
What do chmod command do?
Which command is used to delete all files in the current directory and all its sub-directories?
Why is it called a shebang?
Assume the following files are in the working directory prompt> ls -l tasks -rw-r--r-- 1 alex student 1423 Feb 21 14:01 tasks What command can Alex use to give everyone permission to write to the file? What will the ls -l command display if he does so?
what is the function of grep command?
What is pipe command in unix?
Explain how to use grep command to list find the records of a file containing 10 different strings?
which command is used to stop a running process in unix?
Give the command to display space usage on the UNIX file system.
How does one process we can start an executable file? How to get the PID process, which we started?
Why is it called grep?