2014-05-08 23:45:56 +03:00
|
|
|
# cd
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Change the current working directory.
|
2021-10-04 13:55:59 +02:00
|
|
|
> More information: <https://manned.org/cd>.
|
2014-05-08 23:45:56 +03:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Go to the given directory:
|
2014-05-08 23:45:56 +03:00
|
|
|
|
2016-08-25 22:56:19 +05:30
|
|
|
`cd {{path/to/directory}}`
|
2014-05-08 23:45:56 +03:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Go to the home directory of the current user:
|
2014-05-08 23:45:56 +03:00
|
|
|
|
|
|
|
`cd`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Go up to the parent of the current directory:
|
2014-05-08 23:45:56 +03:00
|
|
|
|
|
|
|
`cd ..`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Go to the previously chosen directory:
|
2014-05-08 23:45:56 +03:00
|
|
|
|
2015-04-07 13:42:01 +02:00
|
|
|
`cd -`
|