Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

15 righe
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