cut [Command]

Command cat

cat – command copy the file to standard output (screen). View the contents of a file and it is also used for creating a new file with some contents.

Syntax

cat [-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).

Description

Usually, 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.

Examples

cat

to view file contents

cat > newfilename

enter,then you can write something in the file and then to save the file contents press clt+d then enter

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.