Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

9 Zeilen
261 B

vor 2 Jahren
  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