1.使用whereis 查找 locate命令
[root@RedHat ~]# whereis locate
locate: /usr/bin/locate /usr/share/man/man1/locate.1.gz
 
使用which查找whereis命令
[root@RedHat ~]# which whereis 
/usr/bin/whereis
 
使用locate查找rm命令
[root@RedHat ~]# locate rm
locate: can not stat () `/var/lib/mlocate/mlocate.db': No such file or directory
 
2.find命令使用:
    使用find命令在当前路径下查找所有的普通文件
[root@RedHat ~]# find . -type f
 
使用find命令查找当前路径下的file1.txt,file2.txt,file3.txt
[root@RedHat ~]# find . -name file1.txt file2.txt file3.txt
 
使用find命令查找文件所有者为root的普通文件
[root@RedHat ~]# find -user root
 
使用find命令查找修改时间在1天以内的普通文件
[root@RedHat ~]# find . -mtime -1
 
3.cut命令使用:
  给定文件cut_data.txt且内容为:
   No Name    Score
   1 zhang 20
   2 li  80
   3 wang 90
   4 sun  60
  使用默认定界符切割文件内容,且输出切割后的第一个字段
[root@RedHat ~]# cut -d" " -f1 cut_data.txt 
No
1
2
3
4
 
切割文件内容,且输出切割后的第一个字段和第三个字段
[root@RedHat ~]# cut -d" " -f1,3 cut_data.txt 
No Score
1 20
2 80
3 90
4 60
 
按字节切割:输出切割的第一个字节到第10个字节的内容
[root@RedHat ~]# cut -c 1-10 cut_data.txt 
No Name Sc
1 zhang 20
2 li 80
3 wang 90
4 sun 60
 
按字符切割:输出切割后的第一个字符和第5个字符的内容
[root@RedHat ~]# cut -c 1,5 cut_data.txt 
Na
1a
2 
3n
4n
 
 按指定分界符去切割:内容如下, 输出第一个字段和第三个字段内容
   No|Name|Score
   1|zhang|20
   2|li|80
   3|wang|90
   4|sun|60
[root@RedHat ~]# cut -d"|" -f1,3 cut_data.txt 
No|Score
1|20
2|80
3|90
4|60
 
4.uniq命令使用: 新建文件uniq_data.txt,文件内容为
      Welcome to Linux
      Windows
      Windows
      Mac
      Mac
      Linux
      
     使用uniq命令输出去重后的结果
[root@RedHat ~]# uniq uniq_data.txt 
Welcome to Linux
Windows
Mac
Linux
 
使用uniq命令只输出重复的行
[root@RedHat ~]# uniq -d uniq_data.txt 
Windows
Mac
 
使用uniq命令输出不重复的行
[root@RedHat ~]# uniq -u uniq_data.txt 
Welcome to Linux
Linux
 
使用uniq命令统计重复次数
[root@RedHat ~]# uniq -c uniq_data.txt 
      1 Welcome to Linux
      2 Windows
      2 Mac
      1 Linux
 
5.sort命令:给定文件 num.txt, args.txt
     文件内容:num.txt
       1
       3
       5
       2
       4
    文件内容:args.txt
      test
      args1
      args2
      args4
      args4
      args3
    对num.txt进行排序,且将结果输出到sorted_num.txt中
[root@RedHat ~]# sort num.txt > sorted_num.txt
[root@RedHat ~]# cat sorted_num.txt 
1
2
3
4
5
 
对args.txt进行排序,且将结果输出到sorted_args.txt中
[root@RedHat ~]# sort args.txt > sorted_args.txt
[root@RedHat ~]# cat sorted_args.txt 
args1
args2
args3
args4
args4
test
 
对num.txt和args.txt进行排序,且将结果输出到sorted_merge.txt中
[root@RedHat ~]# sort num.txt args.txt > sorted_merge.txt
[root@RedHat ~]# cat sorted_merge.txt 
1
2
3
4
5
args1
args2
args3
args4
args4
test
 
对args.txt排序后去重输出
[root@RedHat ~]# cat args.txt |sort -u
args1
args2
args3
args4
test
 
合并sorted_args.txt和sorted_num.txt且输出
[root@RedHat ~]# cat sorted_args.txt sorted_num.txt |sort -m
args1
args2
args3
args4
args4
test
1
2
3
4
5
 
   给定文件info_txt:按第二列作为key进行排序
     No Name    Score
     1 zhang 20
     2 li  80
     3 wang 90
     4 sun  60
[root@RedHat ~]# sort -t " " -k 2 info_txt 
2 li 80
No Name Score
4 sun 60
3 wang 90
1 zhang 20
 
6.将26个小写字母的后13个字母替换成大写字母
[root@RedHat ~]# cat char.txt |tr n-z N-Z
abcdefjhijklmNOPQRSTUVWXYZ
 
将hello 123 world 456中的数字替换成空字符(提示使用通配符)
[root@RedHat ~]# cat char.txt |tr 1-6 " "
hello     world    
 
将hello 123 world 456中字母和空格替换掉,只保留数字(提示使用通配符)
[root@RedHat ~]# cat char.txt |tr -c -d 1-6
123456 
7.wc命令使用:
   给定文件:word_count.txt,里面填充10行内容
   按字节去统计
[root@RedHat ~]# wc -c word_count.txt 
59 word_count.txt
 
按单词去统计
[root@RedHat ~]# wc -w word_count.txt 
10 word_count.txt
 
按行去统计
[root@RedHat ~]# wc -l word_count.txt 
10 word_count.txt









