2025-07-24 22:27:13 -06:00
|
|
|
# ~
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
> 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 ~-`
|