2025-03-14 21:59:59 -06:00
|
|
|
# cd
|
|
|
|
|
|
|
|
|
|
> Change the current working directory.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-cd>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Go to the specified directory:
|
|
|
|
|
|
|
|
|
|
`cd {{path/to/directory}}`
|
|
|
|
|
|
|
|
|
|
- Go up to the parent of the current directory:
|
|
|
|
|
|
|
|
|
|
`cd ..`
|
|
|
|
|
|
|
|
|
|
- Go to the home directory of the current user:
|
|
|
|
|
|
|
|
|
|
`cd`
|
|
|
|
|
|
|
|
|
|
- Go to the home directory of the specified user:
|
|
|
|
|
|
|
|
|
|
`cd ~{{username}}`
|
|
|
|
|
|
|
|
|
|
- Go to the previously chosen directory:
|
|
|
|
|
|
|
|
|
|
`cd -`
|
|
|
|
|
|
|
|
|
|
- Go to the root directory:
|
|
|
|
|
|
|
|
|
|
`cd /`
|