tldr/pages/common/cd.md

29 lines
424 B
Markdown
Raw Normal View History

2014-05-08 21:45:56 +01:00
# cd
> Change the current working directory.
> More information: <https://manned.org/cd>.
2014-05-08 21:45:56 +01:00
- Go to the specified directory:
2014-05-08 21:45:56 +01:00
`cd {{path/to/directory}}`
2014-05-08 21:45:56 +01:00
- Go up to the parent of the current directory:
`cd ..`
- Go to the home directory of the current user:
2014-05-08 21:45:56 +01:00
`cd`
- Go to the home directory of the specified user:
2014-05-08 21:45:56 +01:00
`cd ~{{username}}`
2014-05-08 21:45:56 +01:00
- Go to the previously chosen directory:
2014-05-08 21:45:56 +01:00
2015-04-07 12:42:01 +01:00
`cd -`
- Go to the root directory:
`cd /`