Linux 习题练习-02(grepfind命令yum源配置)
Posted wx62c62b36cedf9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 习题练习-02(grepfind命令yum源配置)相关的知识,希望对你有一定的参考价值。
Liunx 习题练习02
- 返回
initial-setup-ks.cfg
文件中包含字符串 ‘boot’ 的行数
[root@localhost ~]# grep boot /root/initial-setup-ks.cfg | wc -l
[root@localhost ~]# grep -c boot /root/initial-setup-ks.cfg
- 返回
initial-setup-ks.cfg
文件中包含字符串 ‘boot’ 的行与行号
[root@localhost ~]# grep -n boot /root/initial-setup-ks.cfg
- 执行
ps -aux
命令,将文件内容保存到 /root/ps.log 中,查找该文件中包含1774或1775字符串的行
[root@localhost ~]# ps -aux > /root/ps.log
[root@localhost ~]# grep 177[45] ps.log
- 在上述文件中查找包含一串包含四位数的字符串,并且这个字符串最后一个数字为2
[root@localhost ~]# grep [0-9][0-9][0-9]2 /root/ps.log
[root@localhost ~]# grep [0-9][0-9][0-9]...2 /root/ps.log
[root@localhost ~]# grep [0-9][0-9][0-9]...[Ss] /root/ps.log
- 在当前目录下查找除目录以外的所有类型的文件
[root@localhost ~]# find . ! -type d
- 找出所有用户ruochen 拥有的文件,并且把它们拷贝到/root/finder怒骂中
[root@localhost yum.repos.d]# find / -user harry -type f -exec cp /root/finder \\; 2> /dev/null
- 查找文件更改时间比文件a.txt 新但比b.txt 文件旧的文件
- -newr
- find / - newer a.txt ! -newer b.txt
[root@localhost ~]# find / -newer initial-setup-ks.cfg ! -newer ps.log -exec ls -lh \\;
- 统计当前系统中一共有多少账户
- /etc/passwd
- wc -l /etc/passwd
[root@localhost ~]# wc -l /etc/passwd
39 /etc/passwd
- 配置本机yum 环境
[root@localhost Desktop]# mkdir /mnt/cdrom
[root@localhost Desktop]# mount /dev/sr0 /mnt/cdrom
[root@localhost yum]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
[root@localhost yum.repos.d]# rm -rf *
[root@localhost yum.repos.d]# vim dvd.repo
[dvd]
name = dvd
baseurl = file:///mnt/cdrom
gpgcheck = 0
enabled = 1
[root@localhost yum.repos.d]# yum clean all
[root@localhost yum.repos.d]# yum repolist all
以上是关于Linux 习题练习-02(grepfind命令yum源配置)的主要内容,如果未能解决你的问题,请参考以下文章