InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by metacharacters? |
|
Answer» In a DATA FIELD or program, metacharacters are special characters that provide information about other characters. In SHELLS, they're called regular expressions. A character that is neither a letter nor a number is generally considered a metacharacter. Using shell metacharacters, you can group together commands, redirect and pipe input/output, put commands in the background, reduce the size of file names and path names, etc. You can USE them as wildcards to specify a file name without typing in the file's full name. The most COMMON metacharacters are as follows:
|
|