Linux 命令行快速切换回切换目录之前的目录
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
看到这个标题,是不是感觉有点绕?Linux 下的 cd (change directory)命令相信大家都用过,虽然不敢说是大家使用最多的命令,但至少算使用最多之一的了吧!
快速切换回切换目录之前的目录(cd -)
[root@master ruby_learning]# pwd
/root/ruby_learning
[root@master ruby_learning]# cd /usr/local/src/
[root@master src]# pwd
/usr/local/src
[root@master src]# cd -
/root/ruby_learning
[root@master ruby_learning]# pwd
/root/ruby_learning
快速切换回用户 home 目录(cd ~ 或 cd)
如果是 root 用户,home 目录就是 /root, 如果不是 root 用户,home 目录就是 /home/<username> 目录
[root@master ruby_learning]# cd ~
[root@master ~]# pwd
/root
[looking@master ruby_learning]$ pwd
/home/looking/ruby_learning
[looking@master ruby_learning]$ cd ~
[looking@master ~]$ pwd
/home/looking
[looking@master ~]$
快速切换回上级目录(cd ..)
[root@master ruby_learning]# pwd
/root/ruby_learning
[root@master ruby_learning]# cd ..
[root@master ~]# pwd
/root
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)