25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
313 B

2 yıl önce
  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