2.6 相对和绝对路径 2.7 cd命令 2.8 创建和删除目录mkdir/rmdir 2.9 rm

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.6 相对和绝对路径 2.7 cd命令 2.8 创建和删除目录mkdir/rmdir 2.9 rm相关的知识,希望对你有一定的参考价值。

2.6 相对和绝对路径

1、相对与绝对路径

绝对路径:是从根开始的,也就是/

相对路径:是从相对当前的路径

技术分享图片


技术分享图片

[[email protected] ~]# ls .ssh/authorized_keys

.ssh/authorized_keys

[[email protected] ~]# ll

total 24

-rw-r--r--. 1 root root    13 Mar 20  2017 a.txt

-rw-------. 1 root root  1066 Mar 20  2017 anaconda-ks.cfg

drwxr-xr-x. 2 root root     6 Dec 14 08:41 authorized_keys

drwxr-xr-x. 3 root root    20 Aug 22 18:26 mininet

drwxr-xr-x. 2 root root     6 Jun 29 22:05 ovs

-rw-r--r--. 1 root root 11963 Dec 14 09:26 q

-rw-r--r--. 1 root root    26 Dec 12 09:50 ???

[[email protected] ~]# ls .ssh/authorized_keys

.ssh/authorized_keys

[[email protected] ~]# ls /root/.ssh/authorized_keys

/root/.ssh/authorized_keys

[[email protected] ~]#

[[email protected] ~]#

[[email protected] ~]#

[[email protected] ~]# pwd

/root

[[email protected] ~]# ls .ssh/authorized_keys

.ssh/authorized_keys

[[email protected] ~]# ll

total 24


技术分享图片


2.7 cd命令

1、cd命令


技术分享图片


技术分享图片


[[email protected] ~]# cd /etc/sysconfig/

[[email protected] /etc/sysconfig]#

[[email protected] /etc/sysconfig]#

[[email protected] /etc/sysconfig]# cd -

/root

[[email protected] ~]#

[[email protected] ~]#

[[email protected] ~]# cd -

/etc/sysconfig

[[email protected] /etc/sysconfig]# [wd

-bash: [wd: command not found

[[email protected] /etc/sysconfig]# pwd

/etc/sysconfig

[[email protected] /etc/sysconfig]# cd -

/root

[[email protected] ~]# pwd

/root

[[email protected] ~]# cd -

/etc/sysconfig

[[email protected] /etc/sysconfig]#

cd-  表示上一次所在的目录在哪里

[[email protected] /etc/sysconfig]# cd

[[email protected] ~]#

cd 后面什么都不加,就直接切换回家目录


技术分享图片


[[email protected] ~]# cd /home

[[email protected] /home]#

[[email protected] /home]#

[[email protected] /home]# cd ~  

cd ~ 返回用户家目录

cd..  返回根/ 目录


技术分享图片


2.8 创建和删除目录mkdir/rmdir

1、mkdir-创建目录


技术分享图片


技术分享图片


没有目录,无法创建多级目录,可以使用-p参数

创建多级目录,使用参数:-p


技术分享图片

技术分享图片


删除目录:rm命令

技术分享图片


技术分享图片


删除非空目录--使用-p参数

技术分享图片


2.9 rm命令

rm删除目录和文件


技术分享图片


删除目录,不用询问的话,使用-f 参数

技术分享图片


技术分享图片


rm不能删除空目录

技术分享图片


使用rm -rf参数,删除所有目录和文件,并不提示

技术分享图片

技术分享图片


技术分享图片





以上是关于2.6 相对和绝对路径 2.7 cd命令 2.8 创建和删除目录mkdir/rmdir 2.9 rm的主要内容,如果未能解决你的问题,请参考以下文章

2.6 相对和绝对路径 2.7 cd命令 2.8 创建和删除目录mkdir/rmdir 2.9 rm

2.6 相对和绝对路径 2.7 cd命令 2.8 创建和删除目录2.9 rm命令

2.6 相对和绝对路径 2.7 cd命令 2.8 创建和删除目录mkdir/rmdir 2.9 rm

2.6相对和绝对路径;2.7CD命令;2.8创建和删除目录mkdir rmdir;2.9rm命令

3月26日 打卡

20180129第六次课