przetwarzanie_jezyka_natura.../C/answers.txt

15 lines
287 B
Plaintext
Raw Normal View History

2022-11-08 18:55:05 +01:00
C01: sort -nru
2022-11-09 20:08:06 +01:00
C02: cut -d ',' -f 3 | sort -nr | head -1
C03:
head -123 | tail +123
ALBO
sed -n '123p'
C04:
head -20 | tail +10
ALBO
sed -n '10,20p'
C05: grep -Eo '(cz|sz)' | wc -l
C06: sed -En 's/[ĄŻŹĆŚŃŁÓĘ]/X/gip'
C07: cat -n | sort -nr
C08: grep -o '[^[:punct:]]*' | wc -w