BASH Shell 對文件進行管理 創建、複製、刪除、移動、查看、編輯、壓縮、查找內容提要:Linux目錄結構文件定位 路徑文件管理 一、Linux目錄結構 Windows: 以多根的方式組織文件 C:\ D:\ E:\Linux: 以單根的方式組織文件 //目錄結構: FSH (Filesyst ...
BASH Shell 對文件進行管理
========================================================
創建、複製、刪除、移動、查看、編輯、壓縮、查找
內容提要:
Linux目錄結構
文件定位 路徑
文件管理
一、Linux目錄結構
Windows: 以多根的方式組織文件 C:\ D:\ E:\
Linux: 以單根的方式組織文件 /
/目錄結構: FSH (Filesystem Hierarchy Standard)
[root@CentOS ~]# ls /
bin dev lib media net root srv usr
boot etc lib64 misc opt sbin sys var
cgroup home lost+found mnt proc selinux tmp
註:下圖為Centos7目錄結構
bin 普通用戶使用的命令 /bin/ls, /bin/date
sbin 管理員使用的命令 /sbin/service
dev 設備文件 /dev/sda,/dev/sda1,/dev/tty1,/dev/tty2,/dev/pts/1, /dev/zero, /dev/null, /dev/random
root root用戶的HOME
home 存儲普通用戶家目錄
lost+found fsck修複時,存儲沒有鏈接的文件或目錄
proc 虛擬的文件系統,反映出來的是內核,進程信息或實時狀態
usr 系統文件,相當於C:\Windows
/usr/local 軟體安裝的目錄,相當於C:\Program
/usr/bin 普通用戶使用的應用程式
/usr/sbin 管理員使用的應用程式
/usr/lib 庫文件Glibc
/usr/lib64 庫文件Glibc
boot 存放的系統啟動相關的文件,例如kernel,grub(引導裝載程式)
etc 配置文件(系統相關如網路/etc/sysconfig/network,應用相關配置文件如/etc/ssh/sshd_config...)
lib 庫文件Glibc
lib64 庫文件Glibc
tmp 臨時文件(全局可寫:進程產生的臨時文件)
var 存放的是一些變化文件,比如資料庫,日誌,郵件....
mysql: /var/lib/mysql
vsftpd: /var/ftp
mail: /var/spool/mail
cron: /var/spool/cron
log: /var/log
臨時文件: /var/tmp(進程產生的臨時文件)
設備(主要指存儲設備)掛載目錄
media 移動設備預設的掛載點
mnt 手工掛載設備的掛載點
misc automount進程掛載
net automount進程掛載
命令存儲位置
/bin 普通用戶使用的命令 /bin/ls, /bin/date RHEL7淘汰
/sbin 管理員使用的命令 RHEL7淘汰
/usr/bin 普通用戶使用的應用程式
/usr/sbin 管理員使用的應用程式
庫文件存儲位置
/lib 庫文件Glibc RHEL7淘汰
/lib64 庫文件Glibc RHEL7淘汰
/usr/lib 庫文件Glibc
/usr/lib64 庫文件Glibc
文件時間
ls -l 文件名 僅看的是文件的修改時間
Linux文件有四種時間:
# stat anaconda-ks.cfg //查看文件的詳細屬性(其中包括文件時間屬性)
訪問時間:atime,查看內容 //RHEL6會延後修改atime
修改時間:mtime,修改內容
改變時間:ctime,文件屬性,比如許可權
刪除時間:dtime,文件被刪除的時間
[root@CentOS ~]# ls -l install.log
-rw-r--r-- 1 root root 34793 10-23 13:49 install.log
[root@CentOS ~]# stat install.log
File: “install.log”
Size: 34793 Blocks: 80 IO Block: 4096 一般文件
Device: 802h/2050d Inode: 65282 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2012-10-23 16:53:20.000000000 +0800
Modify: 2012-10-23 13:49:46.000000000 +0800
Change: 2012-10-23 13:49:52.000000000 +0800
註:RHEL6開始relatime,atime延遲修改,必須滿足其中一個條件:
1. 自上次atime修改後,已達到86400秒;
2. 發生寫操作時;
文件類型
通過顏色判斷文件的類型是不一定正確的!!!
Linux系統中文件是沒有擴展名!!!
方法一:
ls -l 文件名 //看第一個字元
- 普通文件(文本文件,二進位文件,壓縮文件,電影,圖片。。。)
d 目錄文件(藍色)
b 設備文件(塊設備)存儲設備硬碟,U盤 /dev/sda, /dev/sda1
c 設備文件(字元設備)印表機,終端 /dev/tty1
s 套接字文件
p 管道文件
l 鏈接文件(淡藍色)
[root@CentOS ~]# ll -d /etc/hosts /bin/ls /home /dev/sda /dev/tty1 /etc/grub2.cfg /dev/log /run/dmeventd-client
-rwxr-xr-x. 1 root root 117616 Nov 20 2015 /bin/ls
srw-rw-rw- 1 root root 0 Mar 14 2017 /dev/log
brw-rw---- 1 root disk 8, 0 Mar 14 09:03 /dev/sda
crw--w---- 1 root tty 4, 1 Mar 14 09:03 /dev/tty1
lrwxrwxrwx. 1 root root 22 Dec 21 01:40 /etc/grub2.cfg -> ../boot/grub2/grub.cfg
-rw-r--r-- 1 root root 392 Feb 22 15:51 /etc/hosts
drwxr-xr-x. 10 root root 4096 Mar 14 11:00 /home
方法二:file
[yang@CentOS ~]$ file /etc/hosts
/etc/hosts: ASCII text
[yang@CentOS ~]$ file /bin/ls
/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=aa7ff68f13de25936a098016243ce57c3c982e06, stripped
[yang@CentOS ~]$ file /dev/sda
/dev/sda: block special
[yang@CentOS ~]$ file /dev/tty1
/dev/tty1: character special
[yang@CentOS ~]$ file /etc/grub2.cfg
/etc/grub2.cfg: broken symbolic link to `../boot/grub2/grub.cfg'
[yang@CentOS ~]$ file /home
/home: directory
[yang@CentOS ~]$ file /run/dmeventd-client
/run/dmeventd-client: fifo (named pipe)
二、路徑 (定位文件)
你要在哪兒創建文件?
你要將什麼文件複製到什麼地方?
你要刪除什麼地方的什麼文件?
/home/alice/file1 和 /home/bob/file1 不是同一文件!!!
/abc/file5 和 abc/file5 有可能是不一樣的!!!
絕對路徑: 從/開始的路徑 /home/alice/file1
相對路徑: 相對於當前目錄開始 a.txt ./a.txt ../bob/b.txt [假如:此時在目錄/home/alice]
# useradd alice
# touch /home/alice/file1
# touch ~/file2
# touch ~alice/file3
# pwd
# mkdir abc
# touch ../file3
# touch file4
# touch abc/file5
三、文件管理
1. 文件管理之:cd 改變目錄
cd 絕對路徑 cd /home/alice cd ~alice
cd 相對路徑 cd Desktop/abc cd .. cd .
=======================================================
cd 專用:
cd - 返回上次目錄
cd 直接回家
=======================================================
2. 文件管理之:創建/複製/移動/刪除
==創建
文件 touch
# touch file1.txt //無則創建,有則修改時間
# touch file3 file4
# touch /home/file10.txt
# touch /home/file5 file6
# touch /home/{zhuzhu,gougou}
# touch file{1..20}
# touch file{a..c}
# touch yang{a,b,c} //{}集合,等價touch yanga yangb yangc
目錄 mkdir
# mkdir dir1
# mkdir /home/dir2 /home/dir3
# mkdir /home/{dir4,dir5}
# mkdir -v /home/{dir6,dir7}
# mkdir -v /hoem/dir8/111/22
# mkdir -pv /hoem/dir8/111/222 //包括其父母的創建,不會有任何消息輸出
# mkdir -pv /home/{yang/{dir1,111},CentOS}
==複製 cp
Usage: cp [OPTION]... [-T] SOURCE DEST
# cd
# mkdir /home/dir{1,2}
# cp -v install.log /home/dir1
# cp -v install.log /home/dir1/yang.txt
# cp -rv /etc /home/dir1
# cp -v install.log /home/dir90 //沒有/home/dir90
# cp -v install.log /home/dir2
# cp -v anaconda-ks.cfg !$
# cp -rv /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/passwd /etc/grub.conf /home/dir2 //將多個文件拷貝到同一個目錄
# cp -rv /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/passwd /etc/grub.conf /etc/hosts .
# cp -r /etc /tmp
# cp -rf /etc /tmp
# \cp -r /etc /tmp
[root@CentOS ~]# type -a cp
cp is aliased to `cp -i'
cp is /bin/cp
[root@CentOS ~]# cp -rv /etc/sysconfig/network-scripts/{ifcfg-eth0,ifcfg-eth0.bak}
[root@CentOS ~]# cp -rv /etc/sysconfig/network-scripts/ifcfg-eth0{,-org}
[root@CentOS ~]# cp -rv /etc/sysconfig/network-scripts/{ifcfg-eth0,yang-eth0}
==移動 mv
Usage: mv [OPTION]... [-T] SOURCE DEST
# mv file1 /home/dir3 將file2移動到/home/dir3
# mv file2 /home/dir3/file20 將file2移動到/home/dir3,並改名為file20
# mv file4 file5 將file4重命名為file5,當前位置的移動就是重命名
==刪除 rm
示例1:刪除/home/dir1
# cd /home
# rm -rf dir1
-r 遞歸
-f force強制
-v 詳細過程
示例2:
[root@CentOS ~]# mkdir /home/dir10
[root@CentOS ~]# touch /home/dir10/{file2,file3,.file4}
[root@CentOS ~]# rm -rf /home/dir10/* //不包括隱藏文件
[root@CentOS ~]# ls /home/dir10/ -a
. .. .file4
示例3:
[root@CentOS ~]# rm -rf file*
[root@CentOS ~]# rm -rf *.pdf
3. 文件管理之:查看文件內容
==文本文件 (cat tac less more head tail tailf grep ...)
/bin/date
/etc/hosts
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/passwd
/etc/shadow
/etc/group
/etc/grub2.cfg
/etc/resolv.conf
/etc/profile //設置系統環境變數
/etc/bashrc //影響bash shell環境
/var/log/messages //系統主日誌文件
/var/log/secure //跟安全相關的日誌如ssh登錄,本地登錄...
cat
-n 顯示行號
-A 包括控制字元(換行符/製表符)
linux $
Windows ^M$
less more head tail tailf
[root@CentOS ~]# head /etc/passwd
[root@CentOS ~]# head -2 /etc/passwd
[root@CentOS ~]# tail /etc/passwd
[root@CentOS ~]# tail -1 /etc/passwd
[root@CentOS ~]# tail /var/log/messages
[root@CentOS ~]# tail -20 /var/log/messages
[root@CentOS ~]# tail -f /var/log/secure //-f 動態查看文件的尾部
[root@CentOS ~]# tail -F /var/log/secure //-F 動態查看文件的尾部
註:vim, gedit編輯文件時,索引號會改變
grep 針對文件內容進行過濾
# grep 'root' /etc/passwd
# grep '^root' /etc/passwd
# grep 'bash$' /etc/passwd
# grep 'failure' /var/log/secure
4. 文件管理之:修改文件內容
[root@CentOS ~]# ll -a > list.txt
文件編輯器 gedit
文件編輯器 vi, vim, nano
命令模式:
a. 游標定位
hjkl
0 $
gg G
3G 進入第三行
/string (n N 可以迴圈的) 快速定位到某一行
/^d
/txt$
b. 文本編輯(少量)
y 複製 yy 3yy ygg yG (以行為單位)
d 刪除 dd 3dd dgg dG (以行為單位)
p 粘貼
x 刪除游標所在的字元
D 從游標處刪除到行尾
u undo撤銷
^r redo重做
r 可以用來修改一個字元
c. 進入其它模式
a 進入插入模式
i 進入插入模式
o 進入插入模式
A 進入插入模式
: 進入末行模式(擴展命令模式)
v 進入可視模式
^v 進入可視塊模式
V 進入可視行模式
R 進入替換模式
插入模式:
可視塊模式:
塊插入(在指定塊前加入字元): 選擇塊,I 在塊前插入字元, ESC
塊替換: 選擇塊,r 輸入替換的字元
塊刪除: 選擇塊,d | x
塊複製: 選擇塊,y
擴展命令模式:
a. 保存退出
:10 進入第10行
:w 保存
:q 退出
:wq 保存並退出
:w! 強制保存
:q! 不保存並退出
:wq! 強制保存退出
:x 保存並退出 ZZ
b. 查找替換
:範圍 s/old/new/選項
:1,5 s/root/yang/ 從1-5行的root 替換為yang
:5,$ s/root/yang/ $表示最後一行
:1,$ s/root/yang/g = :% s/root/yang/g %表示全文 g表示全局
:% s#/dev/sda#/var/ccc#g
:,8 s/root/yang/ 從當前行到第8行
:4,9 s/^#// 4-9行的開頭#替換為空
:5,10 s/.*/#&/ 5-10前加入#字元 (.*整行 &引用查找的內容)
c. 讀入文件/寫文件(另存為)
:w 存儲到當前文件
:w /tmp/aaa.txt 另存為/tmp/aaa.txt
:1,3 w /tmp/2.txt
:r /etc/hosts 讀入文件到當前行後
:5 r /etc/hosts 讀入文件到第5行後
d. 設置環境
臨時設置:
:set nu 設置行號
:set ic 不區分大小寫
:set ai 自動縮進
:set list 顯示控制字元
:set nonu 取消設置行號
:set noic
永久的環境:
/etc/vimrc 影響所有系統用戶
~/.vimrc 影響某一個用戶
# vim ~/.vimrc
set ic
set nu
$ sudo vim -O /etc/hosts /etc/grub2.cfg ^ww切換
$ cp /etc/hosts hosts1
$ vimdiff /etc/hosts hosts1