每天一个linux命令cd,每天一个linux命令-cd

cd命令在linux中,用于切换目录,是linux中最常用的命令之一。命令功能

切换当前目录至指定目录

命令格式

cd [diretory]

常用范例

例一:进入到/目录

命令:cd /

输出:[root@oldboylinux ~]# cd /

[root@oldboylinux /]# pwd

/

[root@oldboylinux /]#

用pwd命令可以查看当前所在目录的绝对路径。

例二:返回当前目录的上一层目录,使用../..的用法可以返回上上层目录,../../..,以此类推。

命令:

cd ..

输出:[root@oldboylinux network-scripts]# pwd

/etc/sysconfig/network-scripts

[root@oldboylinux network-scripts]# cd ..

[root@oldboylinux sysconfig]# pwd

/etc/sysconfig

[root@oldboylinux sysconfig]# cd ..

[root@oldboylinux etc]# pwd

/etc

[root@oldboylinux ~]# cd /etc/sysconfig/network-scripts/

[root@oldboylinux network-scripts]# pwd

/etc/sysconfig/network-scripts

[root@oldboylinux network-scripts]# cd ../..

[root@oldboylinux etc]# pwd

/etc

[root@oldboylinux etc]#

例三:进入自己的家目录

命令:cd

#不接任何参数默认返回用户家目录

cd ~

#"~"表示用户的家目录

输出:[root@oldboylinux network-scripts]# cd

[root@oldboylinux ~]# pwd

/root

[root@oldboylinux ~]# cd /etc/sysconfig/network-scripts/

[root@oldboylinux network-scripts]# cd ~

[root@oldboylinux ~]# pwd

/root

[root@oldboylinux ~]#

例四:返回进入此目录之前的目录

命令:cd -

输出:[root@oldboylinux network-scripts]# cd ~

[root@oldboylinux ~]# pwd

/root

[root@oldboylinux ~]# cd -

/etc/sysconfig/network-scripts

[root@oldboylinux network-scripts]# pwd

/etc/sysconfig/network-scripts

[root@oldboylinux network-scripts]# cd -

/root

[root@oldboylinux ~]#

例五:把上个命令的参数作为cd的参数使用

命令:cd !$

输出[root@oldboylinux ~]# cd /etc/sysconfig/network-scripts/

[root@oldboylinux network-scripts]# cd -

/root

[root@oldboylinux ~]# cd -

/etc/sysconfig/network-scripts

[root@oldboylinux network-scripts]# cd !$

cd -

/root

[root@oldboylinux ~]# cd !$

cd -

/etc/sysconfig/network-scripts

[root@oldboylinux network-scripts]#

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值