本文索引:vim
咱們運行命令時如ls命令,並非使用其絕對路徑形式/bin/ls,只使用相對路徑形式的ls命令就能夠執行,這時由於/bin在環境變量PATH內,因此該目錄的ls二進制文件就能夠直接執行了。centos
暫時新增目錄至PATH環境變量bash
[root@centos7 ~]# PATH=$PATH:/test
永久追加目錄至PATH環境變量less
在其最後一行追加 PATH = $PATH:DIR [root@centos7 ~]# vim /etc/profile ... PATH=$PATH:/test 保存退出,重啓後生效
拷貝目錄時,若是目標目錄已存在,會將源目錄放置到目標目錄下;目標目錄不存在,將目錄更名爲目標目錄。ssh
# 將一個目錄拷貝到另一個目錄中 # 並非單純將test目錄下的文件拷貝到test1內, # 而是將test目錄放置到test1目錄下 [root@centos7 ~]# cp -r /test /test1 [root@centos7 ~]# tree /test1 /test1 └── test ├── ls └── ls.new 1 directory, 2 files
[root@centos7 ~]# cp -p /bin/ls /test/ [root@centos7 ~]# cp /bin/ls /test/ls.new [root@centos7 ~]# ls -l /test/ls /bin/ls /test/ls.new -rwxr-xr-x. 1 root root 117656 11月 6 2016 /bin/ls -rwxr-xr-x. 1 root root 117656 11月 6 2016 /test/ls -rwxr-xr-x. 1 root root 117656 10月 19 20:25 /test/ls.new
[root@centos7 ~]# alias cp alias cp='cp -i'
約定:目錄表示最後需加上/,如 cp /test/tcp
mv命令(alias mv='mv -i')this
[root@centos7 test]# ls dir1 dir2 [root@centos7 test]# mv dir1 dir3 [root@centos7 test]# ls dir2 dir3
[root@centos7 test]# ls dir1 dir2 [root@centos7 test]# mv dir1 dir2 [root@centos7 test]# tree dir2 dir2 └── dir1 1 directory, 0 files
[root@centos7 test]# ls file1 file2 [root@centos7 test]# mv file1 file2 mv:是否覆蓋"file2"? y [root@centos7 test]# ls file2
[root@centos7 test]# touch file1 [root@centos7 test]# ls dir2 dir3 file1 [root@centos7 test]# mv file1 file2 [root@centos7 test]# ls dir2 dir3 file2
catcentos7
顯示文本內容 [root@localhost ~]# cat test.txt a b c d e 顯示內容同時顯示序號 [root@localhost ~]# cat -n test.txt 1 a 2 b 3 c 4 d 5 e
cat 高級用法日誌
[root@localhost ~]# cat > 1.txt this is a test sentence # 這個是臨時輸入的,不是讀取的,使用ctrl-d退出編輯後會保存內容至1.txt [root@localhost ~]# cat 1.txt this is a test sentence
taccode
倒序顯示(沒有-n參數,顯示序號) [root@localhost ~]# tac test.txt e d c b a
more 將內容分屏顯示,能向下(空格鍵)查看,向上看(ctrl + B),內容顯示完自動跳出。
[root@localhost ~]# more /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 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-bus-proxy:x:999:997:systemd Bus Proxy:/:/sbin/nologin systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin dbus:x:81:81:System message bus:/:/sbin/nologin --More--(61%)
less
能夠分屏顯示,能夠向上(J鍵或方向鍵的向下鍵)/下(K鍵或方向鍵的向上鍵)查看,使用q鍵跳出;
head(不加-n參數,默認顯示前十行)
[root@centos7 test]# head -n 4 /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
tail(不加-n參數,默認顯示後十行)
[root@centos7 test]# tail -n 4 /etc/passwd sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin chrony:x:997:995::/var/lib/chrony:/sbin/nologin castiel:x:1000:1000::/home/castiel:/bin/bash tcpdump:x:72:72::/:/sbin/nologin
tail -f file 查看動態變化的文件的後十行,經常使用於查看日誌文件
!$ 表示上一條命令的最後一個參數