cd
命令是用于改变当前工作目录的。cd 是 "change directory" 的缩写。基本使用格式如下:
bashcd [directory]
例如:
bashcd Documents
bashcd /home/user/Documents
bash# 假设你当前的工作目录是 /home/user/Documents
# 使用 `cd ..` 切换到上一级目录
cd ..
# 现在你的工作目录是 /home/user
bash# 假设你之前从 /home/user 切换到了 /home/user/Downloads
cd /home/user/Downloads
# 现在你的工作目录是 /home/user/Downloads
# 使用 `cd -` 切换回上一次的工作目录
cd -
# 现在你的工作目录又回到了 /home/user
bash# 使用 `cd ~` 或 `cd` 切换到你的家目录
cd ~
# 或者
cd
# 现在你的工作目录是 /home/user,即你的家目录
路径可以是相对的或者绝对的。
bash# 如果你当前的工作目录是 /home/username
# 进入到 Documents 目录
cd Documents
bashcd /home/username/Documents
本文作者:GYC
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!