1.使用whereis 查找 locate命令
使用which查找whereis命令
使用locate查找rm命令
[root@rhcsa-ma ~]# locate -c rm
5228
[root@rhcsa-ma ~]# whereis locate
locate: /usr/bin/locate /usr/share/man/man1/locate.1.gz
[root@rhcsa-ma ~]# which whereis
/usr/bin/whereis
2.find命令使用: 使用find命令在当前路径下查找所有的普通文件 使用find命令查找当前路径下的file1.txt,file2.txt,file3.txt 使用find命令查找文件所有者为root的普通文件 使用find命令查找修改时间在1天以内的普通文件
[root@rhcsa-ma ~]# find -type f # 所有文本文件
[root@rhcsa-ma ~]# find -type l # 所有链接文件
[root@rhcsa-ma ~]# find find_test1 find_test2 find_test3
find_test1
find_test2
find_test3
root@rhcsa-ma ~]# find -user root | find -type l # 查找用户为root下的普通文件
[root@rhcsa-ma ~]# find -mtime -1 |find -type l # 修改时间在一天内的文件
3.cut命令使用: 给定文件cut_data.txt且内容为: No Name Score 1 zhang 20 2 li 80 3 wang 90 4 sun 60 使用默认定界符切割文件内容,且输出切割后的第一个字段 切割文件内容,且输出切割后的第一个字段和第三个字段 按字节切割:输出切割的第一个字节到第10个字节的内容 按字符切割:输出切割后的第一个字符和第5个字符的内容 按指定分界符去切割:内容如下, 输出第一个字段和第三个字段内容 No|Name|Score 1|zhang|20 2|li|80 3|wang|90 4|sun|60
[root@rhcsa-ma ~]# cut -s -f1 cut_data.txt
[root@rhcsa-ma ~]# cut -s -f1,3 cut_data.txt
[root@rhcsa-ma ~]# cut -b 1-10 cut_data.txt
[root@rhcsa-ma ~]# cut -c 1-5 cut_data.txt
[root@rhcsa-ma ~]# cut -d"|" -f 1,3 cut_data.txt
4.uniq命令使用: 新建文件uniq_data.txt,文件内容为 Welcome to Linux Windows Windows Mac Mac Linux 使用uniq命令输出去重后的结果 使用uniqmingl只输出重复的行 使用uniq命令输出不重复的行 使用uniq命令统计重复次数
[root@rhcsa-ma ~]# uniq uniq_data.txt
[root@rhcsa-ma ~]# uniq -d uniq_data.txt
[root@rhcsa-ma ~]# uniq -u uniq_data.txt
[root@rhcsa-ma ~]# uniq -c -d uniq_data.txt
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@rhcsa-ma ~]# sort -n num.txt > sorted_num.txt
对args.txt进行排序,且将结果输出到sorted_args.txt中
[root@rhcsa-ma ~]# sort -n args.txt > sorted_merge.txt
对num.txt和args.txt进行排序,且将结果输出到sorted_merge.txt中
[root@rhcsa-ma ~]# sort -n args.txt num.txt > sorted_merge.txt
对args.txt排序后去重输出
[root@rhcsa-ma ~]# sort -n -u args.txt
合并sorted_args.txt和sorted_num.txt且输出
[root@rhcsa-ma ~]# sort args.txt num.txt
给定文件info_txt:按第二列作为key进行排序 No Name Score 1 zhang 20 2 li 80 3 wang 90 4 sun 60
[root@rhcsa-ma ~]# sort -n -k 2 info.txt
6.将26个小写字母的后13个字母替换成大写字母
将hello 123 world 456中的数字替换成空字符(提示使用通配符)
将hello 123 world 456中字母和空格替换掉,只保留数字(提示使用通配符)
7.wc命令使用: 给定文件:word_count.txt,里面填充10行内容 按字节去统计 按单词去统计 按行去统计
[root@rhcsa-ma ~]# wc -l word_count.txt # 按行去统计
10 word_count.txt
[root@rhcsa-ma ~]# wc -w word_count.txt # 按单词去统计
11 word_count.txt
[root@rhcsa-ma ~]# wc -c word_count.txt # 按字节去统计