Cat (concatenate) Befehl wird sehr häufig in Linux verwendet. Es liest Daten aus der Datei und gibt deren Inhalt als Ausgabe an. Es hilft uns, Dateien zu erstellen, anzuzeigen und zu verketten. Lassen Sie uns also einige häufig verwendete Cat-Befehle sehen.
1) Zum Anzeigen einer einzelnen Datei
Befehl:
$cat filename
Ausgabe
It will show content of given filename
2) Zum Anzeigen mehrerer Dateien
Befehl:
$cat file1 file2
Ausgabe
This will show the content of file1 and file2.
3) Zum Anzeigen des Inhalts einer Datei mit Zeilennummern.,
Command:
$cat -n filename
Output
It will show content with line numberexample:-cat-n geeks.txt1)This is geeks2)A unique array
4) Create a file
Command:
$ cat >newfile
Output
Will create and a file named newfile
5) Copy the contents of one file to another file.,
Befehl:
$cat >
Ausgang
The content will be copied in destination file
6) Cat befehl kann unterdrücken wiederholt leere zeilen in ausgang
Befehl:
$cat -s geeks.txt
Ausgang
Will suppress repeated empty lines in output
7) Cat Befehl kann den Inhalt einer Datei an das Ende einer anderen Datei anhängen.
Befehl:
$cat file1 >> file2
Ausgang
Will append the contents of one file to the end of another file
8) Cat befehl kann inhalt in umgekehrter reihenfolge mit tac befehl.,
Befehl:
$tac filename
Ausgabe
Will display content in reverse order
9) Der Befehl Cat kann das Zeilenende markieren.
Befehl:
$cat -E "filename"
Ausgabe
Will highlight the end of line
10) Wenn Sie die Option-v, -E und-T zusammen verwenden möchten, können Sie anstelle von-vET in den Befehl einfach die Befehlszeilenoption-A.
– Befehl
$cat -A "filename"
11) Cat-Befehl zum öffnen gestrichelte Dateien.,
Befehl:
$cat -- "-dashfile"
Ausgabe
Will display the content of -dashfile
12) Cat-Befehl, wenn die Datei viel Inhalt hat und nicht in das Terminal passt.
Befehl:
$cat "filename" | more
Ausgabe
Will show that much content, which could fit in terminal and will ask to show more.
12) Cat Befehl zum Zusammenführen des Inhalts mehrerer Dateien.
Befehl:
$cat "filename1" "filename2" "filename3" > "merged_filename"
Ausgabe
13) Cat-Befehl zum Anzeigen des Inhalts aller Textdateien im Ordner.,
Befehl:
$cat *.txt
Ausgabe
Will show the content of all text files present in the folder.
14) Cat-Befehl zum Schreiben in eine bereits vorhandene Datei.
– Befehl :
$cat >> geeks.txtThe newly added text.
Output
Will append the text "The newly added text." to the end of the file.
Dieser Artikel ist ein Beitrag von Pranav. Wenn Sie GeeksforGeeks mögen und einen Beitrag leisten möchten, können Sie auch einen Artikel mit schreiben contribute.geeksforgeeks.org oder mailen Sie Ihren Artikel an [email protected]. Sehen Sie Ihren Artikel auf der Hauptseite von GeeksforGeeks und helfen Sie anderen Geeks.