| cat |
|
|
|
| Wednesday, 02 December 2009 17:53 |
Command catcat command copy the file to standard output (screen). Syntaxcat [-benstvA] files
Options-B enumerates in a non-empty string.-E displays each line ending characters (as $) and all the invisible characters. -N enumerates all the output lines, starting with 1. -S replaces several blank lines to one blank line. -T displays tabs as ^I. -V show invisible characters. -A shows all characters (including invisible). DescriptionUsually, the cat command is used to display the contents of a file or to concatenate multiple files into one. For example, cat filel file2 file3> all three files together in one file with the name of all. |