1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

cat: add Traditional Chinese translation

This commit is contained in:
fanfly 2020-07-19 00:25:03 +09:00 committed by Zlatan Vasović
parent 04ebb77196
commit 8ea907530a

23
pages.zh_TW/common/cat.md Normal file
View file

@ -0,0 +1,23 @@
# cat
> 連接檔案並印出檔案的內容。
- 將檔案的內容印在標準輸出:
`cat {{檔案}}`
- 將多個檔案連接起來,輸出至目標檔案:
`cat {{檔案一}} {{檔案二}} > {{目標檔案}}`
- 將多個檔案連接起來,並將其內容加到目標檔案的結尾:
`cat {{檔案一}} {{檔案二}} >> {{目標檔案}}`
- 印出檔案的內容並顯示行號:
`cat -n {{檔案}}`
- 印出檔案的內容,且將無法顯示的字元用特殊的方式顯示出來:
`cat -v -t -e {{檔案}}`