相对和绝对路径:
绝对路径:若是进入到某个目录是需要从根下开始的,例如:
[root@test76 ~]# cd /etc/sysconfig/network-scripts/
相对路径:从当前目录开始切换到别的路径下,例如:
cd ../sysconfig
cd命令:用来切换目录
1、直接输入:cd,进入用户家目录
[root@test76 ~]# cd /etc/sysconfig/network-scripts/
[root@test76 network-scripts]# cd
[root@test76 ~]# pwd
/root/
2、~表示用户家目录
[root@test76 ~]# cd ~
3、cd - :进入上层的目录
[root@test76 ~]# cd /etc/sysconfig/network-scripts/
[root@test76 network-scripts]# cd -
/root
4、cd ..
返回上层目录
cd ../..
返回上上层目录
5、cd !$
把上个命令的参数作为cd参数使用。
[root@test76 ~]# cd /etc/sysconfig/network-scripts/
You have new mail in /var/spool/mail/root
[root@test76 network-scripts]# cd !$
cd /etc/sysconfig/network-scripts/
创建和删除目录
mkdir
创建目录;如:mkdir /test
创建多层目录:如:mkdir -p /test/test1/test2
rmdir:只能删空的目录,若有文件则不能删除
[root@test76 /]# rmdir ttt/
rmdir: failed to remove `ttt/': Directory not empty
rm命令
删除文件:rm -f test.log
删除文件夹(删除之后无法恢复):rm -rf test
本文出自 “探索发现新事物” 博客,请务必保留此出处http://shenj.blog.51cto.com/5802843/1975168