Linux 习题练习-02(grep、find命令、yum源配置)
【摘要】 Linux 习题练习-02(grep、find命令、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
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)