本文共 620 字,大约阅读时间需要 2 分钟。
cd命令是用来切换工作目录至dirname,其中的dirName表示法可为绝对路径或者相对路径。说白了 就是进入其它目录下,如果没有足够的权限的话 是 进入不了一些目录下的
cd (参数) (目的目录)
[root@localhost etc]# cd /[root@localhost /]# pwd/[root@localhost /]#
[root@localhost etc]# cd /[root@localhost /]# pwd/[root@localhost /]# cd[root@localhost ~]# pwd/root[root@localhost ~]# cd /[root@localhost /]# pwd/[root@localhost /]# cd ~[root@localhost ~]# pwd/root
[root@localhost ~]# cd /etc/sysconfig/network-scripts/[root@localhost network-scripts]# pwd/etc/sysconfig/network-scripts[root@localhost network-scripts]#
转载于:https://blog.51cto.com/sdwaqw/2051164