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.
|
|
- #两个字符串文件均由python生成
- #按数字排序
-
- #覆盖写
- cat hw1.txt | sort | uniq -d > 1.txt
- cat hw1.txt | sort -n | uniq -d > 1.txt
-
- #追加写
- cat hw1.txt | sort | uniq -d >> 2.txt
- cat hw1.txt | sort -n | uniq -d >> 2.txt
-
-
- #找出指定字符串
- grep computer hw1-2.txt
- grep -c computer hw1-2.txt
|