1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 16:35:37 +02:00

$: add examples (#15636)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Managor 2025-01-30 19:13:37 +02:00 committed by GitHub
parent ee5193e4ae
commit 0ed803f864
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,3 +22,11 @@
- Expand with the output of `command` and run it. Same as enclosing `command` in backtics:
`$({{command}})`
- List how many arguments the current context has:
`echo $#`
- Print out a Bash array:
`echo ${array[@]}`