Cat (concatenate) – komentoa käytetään hyvin usein Linuxissa. Se lukee tiedoston tietoja ja antaa niiden sisällön tulosteena. Se auttaa meitä luomaan, katsella, concatenate tiedostoja. Katsotaanpa siis joitakin usein käytettyjä kissakomentoja.
1) tarkastella yhden tiedoston.
Komento:
$cat filename
Lähtö
It will show content of given filename
2), kun Haluat katsoa useita tiedostoja
Komento:
$cat file1 file2
Lähtö
This will show the content of file1 and file2.
3) Voit tarkastella tiedoston sisällön edellisen kanssa rivinumerot.,
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.,
Komento:
$cat >
Lähtö
The content will be copied in destination file
6) Cat-komentoa voi estää toistuvia tyhjiä rivejä-lähtö
Komento:
$cat -s geeks.txt
Lähtö
Will suppress repeated empty lines in output
7) Cat-komennolla voi liittää sisältöä yhden tiedoston loppuun toisen tiedoston.
Komento:
$cat file1 >> file2
Lähtö
Will append the contents of one file to the end of another file
8) Cat-komento voi näyttää sisältöä päinvastaisessa järjestyksessä käyttäen tac-komento.,
Komento:
$tac filename
Lähtö
Will display content in reverse order
9) Cat-komento voi korostaa rivin loppuun.
Komento:
$cat -E "filename"
Lähtö
Will highlight the end of line
10) Jos haluat käyttää -v-E ja -T-vaihtoehto yhdessä, niin sen sijaan että kirjallisesti -vET komento, voit vain käyttää the-A command-line vaihtoehto.
Komento
$cat -A "filename"
11) Kissa komento avaa romutti tiedostoja.,
Komento:
$cat -- "-dashfile"
Lähtö
Will display the content of -dashfile
12) Cat-komento, jos tiedosto on paljon sisältöä ja voi sovittaa päätelaitteeseen.
Komento:
$cat "filename" | more
Lähtö
Will show that much content, which could fit in terminal and will ask to show more.
12) Cat-komento yhdistää sisällön useita tiedostoja.
Komento:
$cat "filename1" "filename2" "filename3" > "merged_filename"
Lähtö
Will merge the contents of file in respective order and will insert that content in "merged_filename".
13) Cat-komento näyttää sisällön kaikki teksti tiedostot-kansioon.,
Komento:
$cat *.txt
Lähtö
Will show the content of all text files present in the folder.
14) Cat-komento kirjoittaa jo olemassa olevan tiedoston.
Komento :
$cat >> geeks.txtThe newly added text.
Lähtö
Will append the text "The newly added text." to the end of the file.
Tämä artikkeli on osaltaan Pranav. Jos pidät GeeksforGeeks ja haluat edistää, voit myös kirjoittaa artikkeli käyttää contribute.geeksforgeeks.org tai lähetä artikkeli [email protected]. Katso artikkeli näy GeeksforGeeks tärkein sivu ja auttaa muita Nörttejä.