RHCSA(四)

课后作业:

1.查找命令

 (1)  使用whereis 查找 locate命令

[root@localhost ~]# whereis locate
locate: /usr/bin/locate /usr/share/man/man1/locate.1.gz

  (2)使用which查找whereis命令

[root@localhost ~]# which whereis
/usr/bin/whereis

  (3)使用locate查找rm命令

[root@localhost ~]# locate rm

2.find命令使用:

   (1)使用find命令在当前路径下查找所有的普通文件

[root@localhost ~]# find

   (2)使用find命令查找当前路径下的file1.txt,file2.txt,file3.txt

[root@localhost ~]# find . -name "file*".txt

   (3)使用find命令查找文件所有者为root的普通文件

[root@localhost ~]# find /root

   (4)使用find命令查找修改时间在1天以内的普通文件

[root@localhost ~]# find -atime 1

3.cut命令使用:

(1)给定文件cut_data.txt且内容为:
  No Name    Score
  1 zhang 20
  2 li  80
  3 wang 90
  4 sun  60

[root@localhost ~]# vim cat_data.txt
                                                                                                                                                                                                                         
  No Name    Score
  1 zhang 20
  2 li  80
  3 wang 90
  4 sun  60

 (2)使用默认定界符切割文件内容,且输出切割后的第一个字段

[root@localhost ~]# cut -d" " -f1 cut_data.txt

 (3)切割文件内容,且输出切割后的第一个字段和第三个字段

[root@localhost ~]# cut -d" " -f1,3 cut_data.txt

 (4)按字节切割:输出切割的第一个字节到第10个字节的内容

[root@localhost ~]# cut -b1,10 cut_data.txt

 (5)按字符切割:输出切割后的第一个字符和第5个字符的内容

[root@localhost ~]# cut -c1,5 cut_data.txt

 (6)按指定分界符去切割:内容如下, 输出第一个字段和第三个字段内容
  No|Name|Score
  1|zhang|20
  2|li|80
  3|wang|90
  4|sun|60

[root@localhost ~]# vim cut_data.txt
  No|Name|Score
  1|zhang|20
  2|li|80
  3|wang|90
  4|sun|60
~              
[root@localhost ~]# cut -d"|" -f1,3 cut_data.txt

4.uniq命令使用:

(1)新建文件uniq_data.txt,文件内容为
     Welcome to Linux
     Windows
     Windows
     Mac
     Mac
     Linux

[root@localhost ~]# vim uniq_data.txt

     Welcome to Linux
     Windows
     Windows
     Mac
     Mac
     Linux

 (2)使用uniq命令输出去重后的结果

[root@localhost ~]# uniq uniq_data.txt

 (3)使用uniqmingl只输出重复的行

[root@localhost ~]# uniq -d uniq_data.txt

 (4)使用uniq命令输出不重复的行

[root@localhost ~]# uniq -u uniq_data.txt

 (5)使用uniq命令统计重复次数

[root@localhost ~]# uniq -c uniq_data.txt

5.sort命令:

(1)给定文件 num.txt, args.txt
      文件内容:num.txt
      1
      3
      5
      2
      4
   文件内容:args.txt
     test
     args1
     args2
     args4
     args4
     args3

[root@localhost ~]# vim num.txt

1
3
5
2
4
[root@localhost ~]# vim args.txt

     test
     args1
     args2
     args4
     args4
     args3

(2)对num.txt进行排序,且将结果输出到sorted_num.txt中

[root@localhost ~]# sort num.txt >sorted_num.txt
[root@localhost ~]# more sorted_num.txt

(3)对args.txt进行排序,且将结果输出到sorted_args.txt中

[root@localhost ~]# sort args.txt > sorted_args.txt
[root@localhost ~]# more sorted_args.txt

 (4)对num.txt和args.txt进行排序,且将结果输出到sorted_merge.txt中

[root@localhost ~]# sort num.txt args.txt > sorted_merge.txt
[root@localhost ~]# more sorted_merge.txt

(5)对args.txt排序后去重输出

[root@localhost ~]# sort -u args.txt

(6)合并sorted_args.txt和sorted_num.txt且输出 

[root@localhost ~]# sort -m sorted_num.txt sorted_args.txt

 (7)给定文件info_txt:按第二列作为key进行排序
    No Name    Score
    1 zhang 20
    2 li  80
    3 wang 90
    4 sun  60

[root@localhost ~]# vim info_txt

    No Name    Score
    1 zhang 20
    2 li  80
    3 wang 90
    4 sun  60
[root@localhost ~]# sort -k 2 info_txt

6.tr

   (1)将26个小写字母的后13个字母替换成大写字母

[root@localhost ~]# echo "abcdefghijklmnopqrstuvwxyz" | tr "o-z" "O-Z"
abcdefghijklmnOPQRSTUVWXYZ

  (2)将hello 123 world 456中的数字替换成空字符(提示使用通配符)

[root@localhost ~]# echo "hello 123 world 456" | tr "123?456?" "null"
hello nul world lll

  (3)将hello 123 world 456中字母和空格替换掉,只保留数字(提示使用通配符)

[root@localhost ~]# echo "hello 123 world 456" | tr -c "123456" " "
      123       456 [root@localhost ~]# 

7.wc命令使用:

  (1)给定文件:word_count.txt,里面填充10行内容

[root@localhost ~]# vim world_count.txt

a
b
c
d
e
f
g
h
i
j
[root@localhost ~]# cat -n world_count.txt

(2)按字节去统计

[root@localhost ~]# wc -c world_count.txt

(3)按单词去统计

[root@localhost ~]# wc -w world_count.txt

 (4)按行去统计

[root@localhost ~]# wc -l world_count.txt

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值