Cat (concatenate) parancs nagyon gyakran használják a Linux. Ez beolvassa az adatokat a fájlból, és adja azok tartalmát kimenetként. Segít létrehozni, megtekinteni, összefűzni a fájlokat. Tehát lássuk néhány gyakran használt macska parancsot.
1) egyetlen fájl megtekintéséhez
parancs:
$cat filename
kimenet
It will show content of given filename
2) Több fájl megtekintéséhez
parancs:
$cat file1 file2
output
This will show the content of file1 and file2.
3) egy sorszámmal rendelkező előző fájl tartalmának megtekintéséhez.,
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.,
Parancs:
$cat >
Kimenet
The content will be copied in destination file
6) a Cat parancs is elnyomja ismételt üres vonal kimenet
Parancsot:
$cat -s geeks.txt
Kimenet
Will suppress repeated empty lines in output
7) Cat paranccsal lehet hozzáfűzni a tartalmát egy fájlt, hogy a végén egy másik fájlt.
parancs:
$cat file1 >> file2
kimenet
Will append the contents of one file to the end of another file
8) A Cat parancs fordított sorrendben jelenítheti meg a tartalmat a tac parancs segítségével.,
parancs:
$tac filename
kimenet
Will display content in reverse order
9) A Cat parancs kiemelheti a sor végét.
parancs:
$cat -E "filename"
kimenet
Will highlight the end of line
10) ha együtt szeretné használni a-v, -E és-T opciót, akkor a-vET parancs írása helyett csak a-A parancssor opciót használhatja.
parancs
$cat -A "filename"
11) Cat parancs a szaggatott fájlok megnyitásához.,
parancs:
$cat -- "-dashfile"
kimenet
Will display the content of -dashfile
12) Cat parancs, ha a fájlnak sok tartalma van, és nem fér el a terminálon.
parancs:
$cat "filename" | more
kimenet
Will show that much content, which could fit in terminal and will ask to show more.
12) Cat parancs több fájl tartalmának egyesítéséhez.
parancs:
$cat "filename1" "filename2" "filename3" > "merged_filename"
kimenet
Will merge the contents of file in respective order and will insert that content in "merged_filename".
13) Cat parancs a mappában lévő összes szöveges fájl tartalmának megjelenítéséhez.,
parancs:
$cat *.txt
kimenet
Will show the content of all text files present in the folder.
14) Cat parancs egy már létező fájlba való íráshoz.
parancs:
$cat >> geeks.txtThe newly added text.
kimenet
Will append the text "The newly added text." to the end of the file.
ezt a cikket a Pranav írta. Ha tetszik GeeksforGeeks szeretne hozzájárulni, akkor is írni egy cikket segítségével contribute.geeksforgeeks.org vagy küldje el a cikket [email protected]. lásd a cikket megjelenő GeeksforGeeks főoldalon, és segítsen más Geeks.