赞
踩
Linux的目录结构为树状结构,最顶级的目录为根目录 /。
其他目录通过挂载可以将它们添加到树中,通过解除挂载可以移除它们。
首先先知道什么是绝对路径与相对路径吧~
你可以使用 man [命令] 来查看各个命令的使用文档,如 :man cp。
语法:
[root@xgj ~]# ls [-aAdfFhilnrRSt] 目录名称
[root@xgj ~]# ls [--color={never,auto,always}] 目录名称
[root@xgj ~]# ls [--full-time] 目录名称
选项与参数:
将家目录下的所有文件列出来(含属性与隐藏档)
[root@xgj ~]# ls -al ~
cd是Change Directory的缩写,这是用来变换工作目录的命令。
语法:
cd [相对路径或绝对路径]
#使用 mkdir 命令创建test目录
[root@xgj ~]# mkdir test
#使用绝对路径切换到test目录
[root@xgj ~]# cd /root/test/
#使用相对路径切换到test目录
[root@xgj ~]# cd ./test/
# 表示回到自己的家目录
[root@xgj]# cd ~
# 表示去到目前的上一级目录
[root@xgj ~]# cd ..
pwd是Print Working Directory的缩写,也就是显示目前所在目录的命令。
[root@xgj ~]# pwd [-P]
选项与参数:
范例:单纯显示出目前的工作目录:
[root@xgj ~]# pwd
/root <== 显示出目录啦~
范例:显示出实际的工作目录,而非连结档本身的目录名而已
[root@xgj ~]# cd /var/mail <==注意,/var/mail是一个连结档
[root@xgj mail]# pwd
/var/mail <==列出目前的工作目录
[root@xgj mail]# pwd -P
/var/spool/mail <==怎么回事?有没有加 -P 差很多~
[root@xgj mail]# ls -ld /var/mail
lrwxrwxrwx 1 root root 10 Sep 4 17:54 /var/mail -> spool/mail
# 看到这里应该知道为啥了吧?因为 /var/mail 是连结档,连结到 /var/spool/mail
# 所以,加上 pwd -P 的选项后,会不以连结档的数据显示,而是显示正确的完整路径啊!
语法:
mkdir [-mp] 目录名称
选项与参数:
范例:请到/tmp底下尝试创建数个新目录看看:
[root@xgj ~]# cd /tmp
[root@xgj tmp]# mkdir test <==创建一名为 test 的新目录
[root@xgj tmp]# mkdir test1/test2/test3/test4
mkdir: cannot create directory `test1/test2/test3/test4':
No such file or directory <== 没办法直接创建此目录啊!
[root@xgj tmp]# mkdir -p test1/test2/test3/test4
加了这个 -p 的选项,可以自行帮你创建多层目录!
范例:创建权限为rwx–x–x的目录
[root@xgj tmp]# mkdir -m 711 test2
[root@xgj tmp]# ls -l
drwxr-xr-x 3 root root 4096 Jul 18 12:50 test
drwxr-xr-x 3 root root 4096 Jul 18 12:53 test1
drwx--x--x 2 root root 4096 Jul 18 12:54 test2
上面的权限部分,如果没有加上 -m 来强制配置属性,系统会使用默认属性。
如果我们使用 -m ,如上例我们给予 -m 711 来给予新的目录 drwx–x–x 的权限。
语法:
rmdir [-p] 目录名称
选项与参数:
删除 test 目录
[root@xgj tmp]# rmdir test/
范例:将於mkdir范例中创建的目录(/tmp底下)删除掉!
[root@xgj tmp]# ls -l <==看看有多少目录存在?
drwxr-xr-x 3 root root 4096 Jul 18 12:50 test
drwxr-xr-x 3 root root 4096 Jul 18 12:53 test1
drwx--x--x 2 root root 4096 Jul 18 12:54 test2
[root@xgj tmp]# rmdir test <==可直接删除掉,没问题
[root@xgj tmp]# rmdir test1 <==因为尚有内容,所以无法删除!
rmdir: `test1': Directory not empty
[root@xgj tmp]# rmdir -p test1/test2/test3/test4
[root@xgj tmp]# ls -l <==您看看,底下的输出中test与test1不见了!
drwx--x--x 2 root root 4096 Jul 18 12:54 test2
利用 -p 这个选项,立刻就可以将 test1/test2/test3/test4 一次删除。
不过要注意的是,这个 rmdir 仅能删除空的目录,你可以使用 rm 命令来删除非空目录。
cp 即拷贝文件和目录。
语法:
[root@xgj ~]# cp [-adfilprsu] 来源档(source) 目标档(destination)
[root@xgj ~]# cp [options] source1 source2 source3 .... directory
选项与参数:
用root身份,将家目录下的 .bashrc 复制到 /tmp 下,并更名为 bashr
[root@xgj ~]# cp ~/.bashrc /tmp/bashrc
[root@xgj ~]# cp -i ~/.bashrc /tmp/bashrc
cp: overwrite `/tmp/bashrc'? n <==n不覆盖,y为覆盖
语法:
rm [-fir] 文件或目录
选项与参数:
将刚刚在 cp 的范例中创建的 bashrc 删除掉!
[root@xgj tmp]# rm -i bashrc
rm: remove regular file `bashrc'? y
如果加上 -i 的选项就会主动询问喔,避免你删除到错误的档名!
语法:
[root@xgj ~]# mv [-fiu] source destination
[root@xgj ~]# mv [options] source1 source2 source3 .... directory
选项与参数:
[root@xgj ~]# cd /tmp
[root@xgj tmp]# cp ~/.bashrc bashrc
[root@xgj tmp]# mkdir mvtest
[root@xgj tmp]# mv bashrc mvtest
将某个文件移动到某个目录去,就是这样做!
将刚刚的目录名称更名为 mvtest2
[root@xgj tmp]# mv mvtest mvtest2
mv filename.{old,new}
花括号的语法能让你方便的更换文件的后缀,又避免了重复输入文件名。
Linux系统中使用以下命令来查看文件的内容:
你可以使用 man [命令]来查看各个命令的使用文档,如 :man cat 。
语法:
cat [-AbEnTv]
选项与参数:
[root@xgj ~]# cat /etc/issue
CentOS release 6.4 (Final)
Kernel \r on an \m
tac与cat命令刚好相反,文件内容从最后一行开始显示,可以看出 tac 是 cat 的倒着写!如:
[root@xgj ~]# tac /etc/issue
Kernel \r on an \m
CentOS release 6.4 (Final)
语法:
nl [-bnw] 文件
选项与参数:
范例一:用 nl 列出 /etc/issue 的内容
[root@xgj ~]# nl /etc/issue
1 CentOS release 6.4 (Final)
2 Kernel \r on an \m
[root@xgj ~]# more /etc/man.config
#
# Generated automatically from man.conf.in by the
# configure script.
#
# man.conf from man-1.6d
....(中间省略)....
--More--(28%) <== 重点在这一行喔!你的光标也会在这里等待你的命令
在 more 这个程序的运行过程中,你有几个按键可以按的:
以下实例输出/etc/man.config文件的内容:
[root@xgj ~]# less /etc/man.config
#
# Generated automatically from man.conf.in by the
# configure script.
#
# man.conf from man-1.6d
....(中间省略)....
: <== 这里可以等待你输入命令!
less运行时可以输入的命令有:
语法:
head [-n number] 文件
选项与参数:
[root@xgj ~]# head /etc/man.config
默认的情况中,显示前面 10 行!若要显示前 20 行,就得要这样:
[root@xgj ~]# head -n 20 /etc/man.config
语法:
tail [-n number] 文件
选项与参数:
[root@xgj ~]# tail /etc/man.config
# 默认的情况中,显示最后的十行!若要显示最后的 20 行,就得要这样:
[root@xgj ~]# tail -n 20 /etc/man.config
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。