1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 20:15:31 +02:00

stat: add Hindi translation (#14742)

* stat: add Hindi translation

* Update pages.hi/common/stat.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Karthik Vallamsetla 2024-11-09 12:30:29 -08:00 committed by GitHub
parent 37f90a8506
commit 2aa3c1d104
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
pages.hi/common/stat.md Normal file
View file

@ -0,0 +1,28 @@
# stat
> फ़ाइल और फ़ाइल सिस्टम की जानकारी दिखाएँ।
> अधिक जानकारी: <https://www.gnu.org/software/coreutils/manual/html_node/stat-invocation.html>
- एक विशिष्ट फ़ाइल के गुण दिखाएँ जैसे आकार, अनुमतियाँ, निर्माण और पहुँच तिथियाँ आदि:
`stat {{फ़ाइल/का/पथ}}`
- एक विशिष्ट फ़ाइल के गुण दिखाएँ जैसे आकार, अनुमतियाँ, निर्माण और पहुँच तिथियाँ आदि बिना लेबल के:
`stat --terse {{फ़ाइल/का/पथ}}`
- उस फ़ाइल सिस्टम की जानकारी दिखाएँ जहाँ एक विशिष्ट फ़ाइल स्थित है:
`stat --file-system {{फ़ाइल/का/पथ}}`
- केवल ऑक्टल फ़ाइल अनुमतियाँ दिखाएँ:
`stat --format="%a %n" {{फ़ाइल/का/पथ}}`
- एक विशिष्ट फ़ाइल का मालिक और समूह दिखाएँ:
`stat --format="%U %G" {{फ़ाइल/का/पथ}}`
- एक विशिष्ट फ़ाइल का आकार बाइट्स में दिखाएँ:
`stat --format="%s %n" {{फ़ाइल/का/पथ}}`