目录
一、 环境变量PATH
二、 cp命令
三、 mv命令
四、 文档查看cat/more/less/head/tail
一、 环境变量PATH
使用echo
命令来输出$PATH的值:
[root@minglinux-01 ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
用which
查到ls命令的绝对路径为/usr/bin/ls,而我们直接使用ls命令也可以生效,这就是环境变量PATH在起作用。因为/bin目录在PATH的设定中,所以自然可以找到ls。
[root@minglinux-01 ~]# which ls
alias ls='ls --color=auto'
/usr/bin/ls
[root@minglinux-01 ~]# ls
anaconda-ks.cfg
将ls命令移动到其他地方或者改名后,使用绝对路径也是可以生效的,示例如下:
[root@minglinux-01 ~]# cp /usr/bin/ls /tmp/ls2
[root@minglinux-01 ~]# /tmp/ls2
anaconda-ks.cfg
如果将ls移到/root目录下,由于PATH里没有/root目录,所以执行ls命令时,系统是找不到ls命令来执行的,它会提示command not found!。示例如下:
[root@minglinux-01 ~]# mv /usr/bin/ls /root/
[root@minglinux-01 ~]# ls
-bash: /usr/bin/ls: 没有那个文件或目录
要想让ls可以执行,有两种方法,一种是直接将/root这个路径加入到$PATH当中,一种是使用绝对路径。命令如下:
[root@minglinux-01 ~]# PATH=$PATH:/root
[root@minglinux-01 ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/root
[root@minglinux-01 ~]# ls
anaconda-ks.cfg ls
[root@minglinux-01 ~]# /root/ls
anaconda-ks.cfg ls
为了不影响系统使用,应该执行mv /root/ls /usr/bin/
m命令将ls文件还原。
需要注意的是这里将/root加入PATH并不是永久的,当机器重启这个设定就不生效了,要想这个环境变量修改永久生效,需要编辑etc/profile配置文件,在文件最后加上一行 PATH=$PATH:/root/
。要是不想要/root在环境变量了,删除这行即可。
二、 cp命令
cp
是copy的简写,cp
命令用来将一个或多个源文件或者目录复制到指定的目的文件或目录。该命令的格式为:cp [选项] [来源文件] [目的文件]。
下面介绍几个常用选项:
-r:如果复制目录,必须加-r选项,否则不能复制。
cp
命令可以复制并重命名目录或文件,示例:
[root@minglinux-01 ~]# mkdir 123
[root@minglinux-01 ~]# cp 123 456
cp: 略过目录"123"
[root@minglinux-01 ~]# ls
123 anaconda-ks.cfg
[root@minglinux-01 ~]# cp -r 123 456
[root@minglinux-01 ~]# ls
123 456 anaconda-ks.cfg
-i:这是安全选项,如果遇到一个已存在的文件,会询问是都覆盖。在CentOS中,
cp
其实就是cp -i
的别名。选项使用的示例如下:
[root@minglinux-01 ~]# cd 123
[root@minglinux-01 123]# touch 111
[root@minglinux-01 123]# touch 222
[root@minglinux-01 123]# cp -i 111 222
cp:是否覆盖"222"?
[root@minglinux-01 123]# echo 'abc' > 111
[root@minglinux-01 123]# echo 'def' > 222
[root@minglinux-01 123]# cat 111 222
abc
def
[root@minglinux-01 123]# /bin/cp 111 222
[root@minglinux-01 123]# cat 111 222
abc
abc
上例中,命令touch
可以解释为:如果有这个文件,则会改变该文件的访问时间;如果没有这个文件,就会创建这个文件。
复制目录时,若目标目录存在,则将源目录放在目标目录下;若目标目录不存在,则将源目录复制并改名为目标目录。示例如下:
[root@minglinux-01 ~]# tree
.
├── 123
│ ├── 111
│ └── 222
├── 456
└── anaconda-ks.cfg
2 directories, 3 files
[root@minglinux-01 ~]# cp -r /root/123 /root/456
[root@minglinux-01 ~]# tree /root/456
/root/456
└── 123
├── 111
└── 222
1 directory, 2 files
[root@minglinux-01 ~]# cp -r /root/123/ /root/789
[root@minglinux-01 ~]# tree
.
├── 123
│ ├── 111
│ └── 222
├── 456
│ └── 123
│ ├── 111
│ └── 222
├── 789
│ ├── 111
│ └── 222
└── anaconda-ks.cfg
4 directories, 7 files
如果目标目录下有和源目录同名目录,则会提示是否覆盖,示例:
[root@minglinux-01 ~]# cp -r /root/123 /root/456
cp:是否覆盖"/root/456/123/111"? n
cp:是否覆盖"/root/456/123/222"? n
三、 mv命令
mv
是move的简写,该命令的格式为:mv [选项] [源文件或目录] [目标文件或目录]。
移动目录时,若目标目录不存在,则相当于将源目录重命名为目标目录;若目标目录存在,则将源目录移动到目标目录里。示例:
[root@minglinux-01 ~]# mkdir /tmp/test_mv
[root@minglinux-01 ~]# cd /tmp/test_mv/
[root@minglinux-01 test_mv]# mkdir dira dirb
[root@minglinux-01 test_mv]# ls
dira dirb
[root@minglinux-01 test_mv]# mv dira dirc
[root@minglinux-01 test_mv]# ls
dirb dirc
[root@minglinux-01 test_mv]# mv dirb dirc
[root@minglinux-01 test_mv]# ls
dirc
[root@minglinux-01 test_mv]# ls dirc
dirb
移动文件时,若目标文件不存在,则相当于将源文件重命名为目标文件;若目标文件存在,则会提示是否覆盖。如果源是文件,目标是目录,则将源文件移动到目标目录里。
[root@minglinux-01 test_mv]# touch filed
[root@minglinux-01 test_mv]# ls
dirc filed
[root@minglinux-01 test_mv]# mv filed filee
[root@minglinux-01 test_mv]# ls
dirc filee
[root@minglinux-01 test_mv]# mv filee dirc/
[root@minglinux-01 test_mv]# ls
dirc
[root@minglinux-01 test_mv]# ls dirc/
dirb filee
四、 文档查看cat/more/less/head/tail
-
cat
命令用于查看一个文件内容并将其显示在屏幕上。下面介绍它的两个常用选项。
-n:查看文件时,把行号也显示到屏幕上。
[root@minglinux-01 test_mv]# echo '11111111' > dirb/filee
[root@minglinux-01 test_mv]# echo '22222222' >> dirb/filee
[root@minglinux-01 test_mv]# cat dirb/filee
11111111
22222222
[root@minglinux-01 test_mv]# cat -n dirb/filee
1 11111111
2 22222222
-A:显示所有内容,包括特殊字符。
[root@minglinux-01 test_mv]# cat -A dirb/filee
11111111$
22222222$
-
tac
命令和cat
作用一样,但显示的结果和cat
正好是反序。
[root@minglinux-01 test_mv]# tac dirb/filee
22222222
11111111
-
more
命令也是用于显示一个文件的内容,但不会像cat一样全部显示出来。它会一屏一屏的显示,按空格键下翻页。看完之后就自动退出来了,想提前退出,按q即可。还可以按Ctrl+B键可以向上翻页,按Ctrl+F向下翻屏(同空格)。
[root@minglinux-01 test_mv]# more /etc/profile
# /etc/profile
# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc
# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.
pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
--More--(32%)
-
less
命令的作用和more
一样,但它的功能要比more
多一些。它的功能有:
less同时可以用方向键来一行一行的翻页。翻到尾部不会自动退出来。
按q可以退出。
按“g”定位到行首。
按“G”定位到行尾。
按/可以在当行向下搜索内容,按?在当行向上搜索内容,搜索时按n显示下一个,按N显示上一个。
-
head
命令用于显示文件的前10行,后面直接跟文件名。如果加-n选项,则显示文件的前几行。选项-n后有无空格均可。另外,也可以省略字母n,-后面直接跟数字。示例如下:
[root@minglinux-01 ~]# head /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
[root@minglinux-01 ~]# head -n 2 /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
[root@minglinux-01 ~]# head -n2 /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
[root@minglinux-01 ~]# head -2 /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
-
tail
命令用于显示文件的最后10行,和head
命令相似。
[root@minglinux-01 ~]# tail /etc/passwd
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin
dbus:x:81:81:System message bus:/:/sbin/nologin
polkitd:x:999:998:User for polkitd:/:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
[root@minglinux-01 ~]# tail -n 2 /etc/passwd
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
[root@minglinux-01 ~]# tail -n2 /etc/passwd
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
[root@minglinux-01 ~]# tail -2 /etc/passwd
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
tail
的-f选项也常用,它可以动态显示文件的最后10行。如果文件在不断增加,使用-f选项非常方便和直观。