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

$: add Hindi translation (#14336)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Ayush 2024-10-23 22:02:11 +05:30 committed by GitHub
parent 73f68179e6
commit 50c1dc45f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages.hi/common/$.md Normal file
View file

@ -0,0 +1,24 @@
# Dollar sign
> बैश वैरिएबल का विस्तार करें।
> अधिक जानकारी: <https://gnu.org/software/bash/manual/bash.html#Shell-Variables>
- एक वेरिएबल प्रिंट करें:
`echo ${{वैरिएबल}}`
- पिछली कमांड की निकास स्थिति प्रिंट करें:
`echo $?`
- 0 और 32767 के बीच एक यादृच्छिक संख्या प्रिंट करें:
`echo $RANDOM`
- शीघ्र स्ट्रिंग में से एक को प्रिंट करें:
`echo ${{PS1|PS2|PS3|PS4}}`
- `कमांड` के आउटपुट के साथ विस्तार करें और इसे चलाएं। बैकटिक्स में `कमांड` संलग्न करने के समान:
`$({{कमांड}})`