mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
cat, chsh, false, git-init, time, view: add Hindi translations (#4598)
This commit is contained in:
parent
6ffb27546e
commit
323e9c0b46
6 changed files with 64 additions and 0 deletions
23
pages.hi/common/cat.md
Normal file
23
pages.hi/common/cat.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# cat
|
||||
|
||||
> फ़ाइलों को प्रिंट और संक्षिप्त करें।
|
||||
|
||||
- मानक आउटपुट में फ़ाइल की सामग्री प्रिंट करें:
|
||||
|
||||
`cat {{फ़ाइल}}`
|
||||
|
||||
- लक्ष्य फ़ाइल में कई फ़ाइलों को संयुक्त करें:
|
||||
|
||||
`cat {{फ़ाइल1}} {{फ़ाइल2}} > {{लक्ष्य_फ़ाइल}}`
|
||||
|
||||
- लक्ष्य फ़ाइल के अंत में कई फ़ाइलें संलग्न करें:
|
||||
|
||||
`cat {{फ़ाइल1}} {{फ़ाइल2}} >> {{लक्ष्य_फ़ाइल}}`
|
||||
|
||||
- सभी आउटपुट लाइनों की संख्या:
|
||||
|
||||
`cat -n {{फ़ाइल}}`
|
||||
|
||||
- गैर-मुद्रण योग्य और सफेदस्थान पात्र प्रदर्शित करें (M-उपसर्ग के साथ यदि गैर-ASCII):
|
||||
|
||||
`cat -v -t -e {{फ़ाइल}}`
|
7
pages.hi/common/chsh.md
Normal file
7
pages.hi/common/chsh.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# chsh
|
||||
|
||||
> उपयोगकर्ता का लॉगिन शेल बदलें।
|
||||
|
||||
- शेल बदलें:
|
||||
|
||||
`chsh -s {{मार्ग/का/शेल_बाइनरी}} {{उपयोगकर्ता_नाम}}`
|
7
pages.hi/common/false.md
Normal file
7
pages.hi/common/false.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# false
|
||||
|
||||
> 1 का एग्जिट कोड लौटाता है।
|
||||
|
||||
- 1 का निकास कोड लौटाएँ:
|
||||
|
||||
`false`
|
12
pages.hi/common/git-init.md
Normal file
12
pages.hi/common/git-init.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# git init
|
||||
|
||||
> एक नया स्थानीय गिट रिपॉजिटरी शुरू करता है।
|
||||
> अधिक जानकारी: <https://git-scm.com/docs/git-init>।
|
||||
|
||||
- एक नया स्थानीय भंडार शुरू करें:
|
||||
|
||||
`git init`
|
||||
|
||||
- एक नंगे हड्डी के भंडार को शुरू करें, जो ssh के रिमोट के रूप में उपयोग के लिए उपयुक्त है:
|
||||
|
||||
`git init --bare`
|
7
pages.hi/common/time.md
Normal file
7
pages.hi/common/time.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# time
|
||||
|
||||
> देखें कि एक कमांड में कितना समय लगता है।
|
||||
|
||||
- समय "ls":
|
||||
|
||||
`time ls`
|
8
pages.hi/common/view.md
Normal file
8
pages.hi/common/view.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# view
|
||||
|
||||
> `Vim` का केवल-पढ़ने वाला संस्करण।
|
||||
> यह `विम -R` के बराबर है।
|
||||
|
||||
- एक फ़ाइल खोलो:
|
||||
|
||||
`view {{फ़ाइल}}`
|
Loading…
Add table
Reference in a new issue