mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
17 lines
322 B
Markdown
17 lines
322 B
Markdown
![]() |
# Tilde
|
||
|
|
||
|
> Expand to a directory.
|
||
|
> More information: <https://gnu.org/software/bash/manual/bash.html#Tilde-Expansion>.
|
||
|
|
||
|
- List the current user's home directory contents:
|
||
|
|
||
|
`ls ~`
|
||
|
|
||
|
- List the home directory contents of another user:
|
||
|
|
||
|
`ls ~{{username}}`
|
||
|
|
||
|
- List the contents of the previous directory you were in:
|
||
|
|
||
|
`ls ~-`
|