Katt(sette sammen) kommandoen er veldig ofte brukt i Linux. Det leser data fra fil og gir deres innhold som output. Det hjelper oss til å opprette, vise, slå sammen filer. Så la oss se på noen ofte brukte cat-kommandoer.
1) for Å vise en enkelt fil
– Kommandoen:
$cat filename
Output
It will show content of given filename
2) for Å vise flere filer
– Kommandoen:
$cat file1 file2
Output
This will show the content of file1 and file2.
3) for Å vise innholdet i en fil med foregående linje tall.,
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.,
– Kommandoen:
$cat >
Output
The content will be copied in destination file
6) Cat-kommandoen kan undertrykke gjentatt tomme linjer på utskriftene
– Kommandoen:
$cat -s geeks.txt
Output
Will suppress repeated empty lines in output
7) Cat-kommandoen kan legge til innholdet av en fil på slutten av en annen fil.
– Kommandoen:
$cat file1 >> file2
Output
Will append the contents of one file to the end of another file
8) Cat-kommandoen, kan vise innhold i omvendt rekkefølge ved hjelp av tac-kommandoen.,
– Kommandoen:
$tac filename
Output
Will display content in reverse order
9) Cat-kommandoen kan markere slutten av linjen.
– Kommandoen:
$cat -E "filename"
Output
Will highlight the end of line
10) Hvis du ønsker å bruke -v, -E og -T alternativet sammen, så i stedet for å skrive-vET i kommandoen, kan du bare bruke En kommando linje alternativet.
Kommandoen
$cat -A "filename"
11) Cat-kommandoen for å åpne stiplede filer.,
– Kommandoen:
$cat -- "-dashfile"
Output
Will display the content of -dashfile
12) Cat-kommandoen hvis filen har mye innhold, og kan ikke passe inn i terminalen.
– Kommandoen:
$cat "filename" | more
Output
Will show that much content, which could fit in terminal and will ask to show more.
12) Cat-kommandoen til å flette innholdet av flere filer.
– Kommandoen:
$cat "filename1" "filename2" "filename3" > "merged_filename"
Output
Will merge the contents of file in respective order and will insert that content in "merged_filename".
13) Cat-kommandoen til å vise innholdet av alle tekst-filer i mappen.,
– Kommandoen:
$cat *.txt
Output
Will show the content of all text files present in the folder.
14) Cat-kommandoen til å skrive i en allerede eksisterende fil.
– Kommandoen :
$cat >> geeks.txtThe newly added text.
Output
Will append the text "The newly added text." to the end of the file.
Denne artikkelen er levert av Pranav. Hvis du liker GeeksforGeeks og ønsker å bidra, kan du også skrive en artikkel med contribute.geeksforgeeks.org eller e-post artikkelen din til [email protected]. Se artikkelen din vises på den GeeksforGeeks hovedsiden og hjelpe andre Geeks.