2014-05-08 21:45:56 +01:00
|
|
|
# cd
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Change the current working directory.
|
2021-10-04 12:55:59 +01:00
|
|
|
> More information: <https://manned.org/cd>.
|
2014-05-08 21:45:56 +01:00
|
|
|
|
2022-03-13 10:11:17 +00:00
|
|
|
- Go to the specified directory:
|
2014-05-08 21:45:56 +01:00
|
|
|
|
2016-08-25 18:26:19 +01:00
|
|
|
`cd {{path/to/directory}}`
|
2014-05-08 21:45:56 +01:00
|
|
|
|
2022-03-13 10:11:17 +00:00
|
|
|
- Go up to the parent of the current directory:
|
|
|
|
|
|
|
|
`cd ..`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Go to the home directory of the current user:
|
2014-05-08 21:45:56 +01:00
|
|
|
|
|
|
|
`cd`
|
|
|
|
|
2022-03-13 10:11:17 +00:00
|
|
|
- Go to the home directory of the specified user:
|
2014-05-08 21:45:56 +01:00
|
|
|
|
2022-03-13 10:11:17 +00:00
|
|
|
`cd ~{{username}}`
|
2014-05-08 21:45:56 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Go to the previously chosen directory:
|
2014-05-08 21:45:56 +01:00
|
|
|
|
2015-04-07 12:42:01 +01:00
|
|
|
`cd -`
|
2022-09-27 17:21:08 +01:00
|
|
|
|
|
|
|
- Go to the root directory:
|
|
|
|
|
|
|
|
`cd /`
|