You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

13 lines
203 B

# 文件由C++生成,代码放在了作业中
sort data.txt -u
sort -n -u data.txt
sort -u -n data.txt > new_data.txt
sort -u >> new_data.txt
grep "com" string.txt
grep -o "com" string.txt |wc -l