You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
626 B

преди 2 години
  1. 第一题
  2. 随机生成50000行的文件
  3. for i in {1..50000}
  4. >do
  5. >echo $RANDOM | md5sum | cut -c 1-9 >> hw1.txt
  6. >done
  7. 按数字排序 追加写的方式重定向
  8. sort -n hw1.txt -u >> 3.txt
  9. 按数字排序 覆盖写的方式重定向
  10. sort -n hw1.txt -u > 4.txt
  11. 按字母排序 追加写的方式重定向
  12. sort -f hw1.txt -u >> 5.txt
  13. 按字母排序 覆盖写的方式重定向
  14. sort -f hw1.txt -u > 6.txt
  15. 第二题
  16. 随机生成一个文件
  17. for i in {1..500}
  18. > do
  19. > echo $RANDOM | md5sum | cut -c 1-9 >> hw2.txt
  20. > done
  21. 查找指定字符串fe
  22. grep 'fe' hw2.txt
  23. 统计字符串fe出现次数
  24. grep -o "fe" hw2.txt | wc -l