Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

9 řádky
261 B

před 2 roky
  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