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.

28 line
625 B

2 年之前
  1. 作业1:
  2. #生成50000行文件
  3. for i in $(seq 1 50000)
  4. do
  5. echo $RANDOM|md5sum|cut -c 1-9
  6. done >> test.txt
  7. #按照字母顺序排序,输出unique行
  8. sort -u test.txt
  9. #按照数字顺序排序,输出unique行
  10. sort -u -n test.txt
  11. #以覆盖写的方式重定向到一个文件(1.txt)
  12. sort -u test.txt > 1.txt
  13. sort -u -n test.txt > 1.txt
  14. #以追加写的方式重定向到一个文件(2.txt)
  15. sort -u test.txt >> 2.txt
  16. sort -u -n test.txt >> 2.txt
  17. 作业2:
  18. #已随机生成文件
  19. #找"computer"
  20. grep "computer" computer.txt
  21. #统计其中包含多少"computer"
  22. grep -o "computer" computer.txt|wc -w