InterviewSolution
Saved Bookmarks
| 1. |
What Would Be The Result Of The Command Paste -s Dog Cat? |
|
Answer» The paste TEXT filter USUALLY joins two files separating the corresponding lines with a tab. The -s option, however, will cause paste to DISPLAY the FIRST file, DOG, then a new line character, and then the file cat. The paste text filter usually joins two files separating the corresponding lines with a tab. The -s option, however, will cause paste to display the first file, dog, then a new line character, and then the file cat. |
|