Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
313 B

il y a 2 ans
  1. #两个字符串文件均由python生成
  2. #按数字排序
  3. #覆盖写
  4. cat hw1.txt | sort | uniq -d > 1.txt
  5. cat hw1.txt | sort -n | uniq -d > 1.txt
  6. #追加写
  7. cat hw1.txt | sort | uniq -d >> 2.txt
  8. cat hw1.txt | sort -n | uniq -d >> 2.txt
  9. #找出指定字符串
  10. grep computer hw1-2.txt
  11. grep -c computer hw1-2.txt