選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
261 B

2年前
  1. python 1.py > 1.1.txt
  2. sort -d 1.1.txt > 1.2.txt --unique
  3. sort --numeric-sort 1.1.txt > 1.2.txt --unique
  4. sort -d 1.1.txt >> 1.3.txt --unique
  5. sort --numeric-sort 1.1.txt >> 1.3.txt --unique
  6. python 2.py > 2.txt
  7. grep "computer" 2.txt
  8. grep -c "computer" 2.txt