Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 rader
516 B

  1. #!/bash/bin
  2. #生成随机字符串
  3. for i in `seq 1000`;do echo $RANDOM | md5sum | cut -c 1-9 ;done > test.txt
  4. #按照字母顺序排列,输出unique行
  5. sort -u test.txt | uniq
  6. #按照数字顺序排列,输出unique行
  7. sort -u -n test.txt | uniq
  8. #以覆盖写的方式重定向到一个文件
  9. sort -u test.txt | uniq > ans1
  10. sort -u -n test.txt | uniq > ans1
  11. #以追加写的方式重定向到一个文件
  12. sort -u test.txt | uniq >> ans1
  13. sort -u -n test.txt | uniq >> ans1
  14. #寻找to
  15. grep -wo "to" test2.txt | wc-l