您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 

10 行
261 B

python 1.py > 1.1.txt
sort -d 1.1.txt > 1.2.txt --unique
sort --numeric-sort 1.1.txt > 1.2.txt --unique
sort -d 1.1.txt >> 1.3.txt --unique
sort --numeric-sort 1.1.txt >> 1.3.txt --unique
python 2.py > 2.txt
grep "computer" 2.txt
grep -c "computer" 2.txt