Skip to content

Commit

Permalink
cat: add Hindi translation (tldr-pages#10310)
Browse files Browse the repository at this point in the history
* cat: add Hindi translation

---------

Co-authored-by: K.B.Dharun Krishna <[email protected]>
  • Loading branch information
aditya955 and kbdharun authored Jun 16, 2023
1 parent c802bcf commit fa6f43f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pages.hi/linux/cat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# cat

> फ़ाइलों को प्रिंट करता है और जोड़ता है।
> अधिक जानकारी: <https://www.gnu.org/software/coreutils/cat>.
- फ़ाइल की सामग्री को मानक (standard) आउटपुट पर प्रिंट करें:

`cat {{फ़ाइल/का/पथ}}`

- एक आउटपुट फ़ाइल में कई फ़ाइलों को सम्‍मिलित करें:

`cat {{फ़ाइल1/का/पथ फ़ाइल2/का/पथ ...}} > {{आउटपुट_फ़ाइल/का/पथ}}`

- आउटपुट फ़ाइल में कई फ़ाइलें जोड़ें:

`cat {{फ़ाइल1/का/पथ फ़ाइल2/का/पथ ...}} >> {{आउटपुट_फ़ाइल/का/पथ}}`

- फ़ाइल की सामग्री को अनबफर्ड ([u]nbuffered) मोड में आउटपुट फ़ाइल में कॉपी करें:

`cat -u {{/dev/tty12}} > {{/dev/tty13}}`

- फ़ाइल में `stdin` लिखें:

`cat - > {{फ़ाइल/का/पथ}}`

- संख्या ([n]umber) सभी आउटपुट लाइनें:

`cat -n {{फ़ाइल/का/पथ}}`

- गैर-मुद्रण योग्य और खाली स्थान वाले वर्ण प्रदर्शित करें (`M-` उपसर्ग के साथ यदि गैर-ASCII है):

`cat -v -t -e {{फ़ाइल/का/पथ}}`

0 comments on commit fa6f43f

Please sign in to comment.