day4 文件管理

1.复制 cp

参数: -v:详细显示命令执行的操作
       -r:递归处理目录及子目录
       -p:保留源文件或目录的属性

例:1.将当前目录下的file文件,复制到/tmp/目录下,并重新命名为file_copy

[[email protected] ~]# cp file /tmp/file_copy
[[email protected] ~]# ls /tmp/file_copy 
/tmp/file_copy

2.将file复制到/tmp目录下

[[email protected] ~]# cp file /tmp/
[[email protected] ~]# cp file /tmp/file
[[email protected] ~]# ls /tmp/file
/tmp/file

3.在拷贝文件的过程中,如何保持文件原有的属性不发生变化

-rw-r--r--. 1 root root  0 Jul 29 10:07 file 原有属性
[[email protected] ~]# cp -p file /tmp/
[[email protected] ~]# ll /tmp/file
-rw-r--r--. 1 root root 0 Jul 29 13:45 /tmp/file

4.如何拷贝一个文件夹,并且文件夹中有很多的子文件,-r递归复制

[[email protected] ~]# cp -r /etc/ /tmp/

5.拷贝不同路径下的不同文件至同一目录下,-v是显示详细过程

[[email protected] ~]# cp file /etc/hostname /etc/hosts /opt/ -v
‘file’ -> ‘/opt/file’
‘/etc/hostname’ -> ‘/opt/hostname’
‘/etc/hosts’ -> ‘/opt/hosts’

6.拷贝不同路径下的不同文件+不同目录至同一位置

[[email protected] ~]# cp -rp file5 oldboy/ /etc/ /opt/

7.在复制过程中平凡触发重复复制,提示确认操作?

[[email protected] ~]# \cp -r /etc/ /opt/
[[email protected] ~]# /bin/cp -r /etc/ /opt/

8.扩展项

[[email protected] ~]# cp {file5,file5-bak} -v 
‘file5’ -> ‘file5-bak’ 
[[email protected] ~]# cp /etc/sysconfig/networkscripts/{ifcfg-ens32,ifcfg- 
ens32-bak}

2.文件管理之:查看文件内容(cat less more head tail grep ...)

------------------------cat

例:1.查看文件的所有内容,从 头到尾

[[email protected] ~]# cat pass

2.查看一个文件有多少行 -n

[[email protected] ~]# cat -n pass

3.查看文件的特殊符号, 比如文件中存在tab键

[[email protected] ~]# cat -A pass 

4.cat扩展使用,创建一个文件,并往里写入内容

[[email protected] ~]# cat >> test.txt <

------------------------less、more

less /etc/services      使用光标上下翻动,空格进行翻页,q退出
more /etc/services    使用回车上下翻动,空格进行翻页,q退出

------------------------head

[[email protected] ~]# head pass            查看头部内容,默认前十行
[[email protected] ~]# head -n5 pass      查看头部5行,使用-n指定 
[[email protected] ~]# ps aux | head -5   了解

------------------------tail

[[email protected] ~]# tail pass                           查看文件尾部默认十行
[[email protected] ~]# tail -20 /var/log/secure 
[[email protected] ~]# tail -f /var/log/messages   -f查看文 件尾部的变化 
[[email protected] ~]# tailf /var/log/messages     查看文件 尾部的变化 
[[email protected] ~]# ps aux | tail -5                   了解

------------------------grep过滤文件内容

例:1. 过滤出pass文件中的root相关的行

[[email protected] ~]# grep "root" pass 
root:x:0:0:root:/root:/bin/bash                         
operator:x:11:0:operator:/root:/sbin/nologin

2.过滤pass文件中,匹配以root开头的行

[[email protected] ~]# grep "^root" pass 
root:x:0:0:root:/root:/bin/bash     

3.过滤pass文件中,匹配以bash结尾的行

[[email protected] ~]# grep "bash$" pass 
root:x:0:0:root:/root:/bin/bash jack:x:1000:1000::/home/jack:/bin/bash

4.显示行号 [[email protected] ~]# grep -n "bash$" pass

1:root:x:0:0:root:/root:/bin/bash 
23:jack:x:1000:1000::/home/jack:/bin/bash

5.扩展了解

grep -n -A 2 "Failed" /var/log/secure      匹配/var/log/secure文件中Failed字符串,并打印它的下2行 
grep -n -B 2 "Failed" /var/log/secure      匹配/var/log/secure文件中Failed字符串,并打印它的上2行 
grep -n -C 2 "Failed" /var/log/secure      匹配/var/log/secure文件中Failed字符串,并打印上下两行

6.过滤出包含ftp的行

[[email protected] ~]# grep "ftp" pass 
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin

7.过滤除了ftp的行,其他的全部显示

[[email protected] ~]# grep -v "ftp" pass 

8.忽略大小写方式

[[email protected] ~]# grep -i  "ftp" pass 
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin

9.过滤pass文件中以sync结尾的,或者ftp相关的行,打印出来.同时不 区分大小写

grep  -Ei "sync$|ftp" pass
grep筛选的目标,会将整行打印出来.

grep相关练习题 、

1.显示当前pass文件中,root、adm或ftp用户相关的信息

[[email protected] ~]# grep -E "^root|^ftp|^adm" pass
root:x:0:0:root:/root:/bin/bash
adm:x:3:4:adm:/var/adm:/sbin/nologin 
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin

2.显示/proc/meminfo文件中以不区分大小的s开头的行;

[[email protected] ~]# grep -i "^s" /proc/meminfo

3.显示/etc/passwd中以nologin结尾的行;

[[email protected] ~]# grep "nologin$" /etc/passwd

4.显示/etc/inittab中以#开头,而后又跟了任意字符的行;

[[email protected] ~]# grep -n  "^# .*" /etc/inittab
. 代表任意单个字符  [a-z]  [A-Z]   [0-9] 
 *  表示所有 
.* 代表所有的任意字符

你可能感兴趣的:(day4 文件管理)