1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.hi/common/stat.md
Karthik Vallamsetla 2aa3c1d104
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>
2024-11-09 12:30:29 -08:00

28 lines
1.5 KiB
Markdown

# 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" {{फ़ाइल/का/पथ}}`