501 mkdir testing_hw_asses 502 cd testing_hw_asses/ 503 git clone ssh://gitolite@redmine.ms.mff.cuni.cz/undergrads/student/npfl092.git 504 cd npfl092/ 505 ls 506 git pull 507 ls 508 cd hw_nonexistent/ 509 ls 510 ./a.py 511 git pull 512 ./a.py 513 git pull 514 ./a.py 515 ./a.py 516 git pull 517 cat README 518 ./a.py 519 cd .. 520 vim Makefile 521 cat Makefile 522 make hello 523 make -s hello 524 vim Makefile 525 make hello 526 vim Makefile 527 make hello 528 vim Makefile 529 make goodbye 530 make hello goodbye 531 vim Makefile 532 make goodbye 533 ls 534 vim file.txt 535 cat file.txt 536 head -n 15 file.txt 537 head -n 20 file.txt | tail -n 10 538 head -n 20 file.txt | tail -n 10|wc -l 539 cat -n file.txt | head -n 20 | tail -n 10 540 cat -n file.txt | head -n 20 | tail -n 11 541 vim Makefile 542 make cat 543 vim Makefile 544 make part 545 vim Makefile 546 make part 547 vim Makefile 548 tac file.txt 549 vim Makefile 550 ls 551 make hr 552 vim Makefile 553 make hr 554 rm elif.txt 555 make hr 556 rm elif.txt 557 vim Makefile 558 make hr 559 vim Makefile 560 cat Makefile 561 grep 'f$' file.txt 562 vim file.txt 563 grep 'f$' file.txt 564 cat Makefile 565 vim file.txt 566 grep 'f$' file.txt 567 make g 568 tail Makefile 569 vim Makefile 570 make g 571 vim Makefile 572 make g 573 vim Makefile 574 make g 575 vim Makefile 576 make g 577 vim Makefile 578 make g 579 tail Makefile 580 vim Makefile 581 make g F=elif.txt 582 vim Makefile 583 vim Makefile 584 vim Makefile 585 ls 586 make p 587 vim a.py 588 make p 589 vim Makefile 590 vim text 591 grep . text 592 grep -o . text 593 vim text 594 cat te 595 cat text 596 grep -o '[[:alpha:]]' text 597 cat text 598 grep -o '[[:alnum:]]' text 599 grep -o '.' text 600 grep -o '[@#!]' text 601 grep -o '[[:punct:]]' text 602 grep '[[:punct:]]' text 603 grep -o '[[:punct:]]' text 604 grep -o '[[:punct:]]*' text 605 grep -v -o '[[:punct:]]' text 606 grep -v '[[:punct:]]' text 607 grep -o '[[:punct:]]' text 608 grep -o '[^[:punct:]]' text 609 man tr 610 tr -d '5' 611 tr -d '5' text 612 tr -d'5' text 613 tr -d'5' < text 614 man tr 615 tr -d '5' < text 616 cat text 617 tr -d '[[:alnum:]]' < text 618 tr -d '[[:punct:]]' < text 619 man tr 620 tr '[[:punct:]]' '_' < text 621 cat text | tr '[[:punct:]]' '_' 622 cat text | tr '[[:punct:]]' '_' > out 623 cat out 624 ipython3 625 ls 626 wget ufal.mff.cuni.cz -O ufal.html 627 cat ufal.html 628 less ufal.html 629 cat ufal.html 630 grep '<' ufal.html 631 grep -o '<' ufal.html 632 grep -o '<' ufal.html |wc 633 grep '<' ufal.html 634 grep -o '<.*>' ufal.html 635 grep -o '<[^>]*>' ufal.html 636 grep -o '<[^>]*>' ufal.html | sort | uniq -c | sort -nr |less 637 #grep -o '<[^>]*>' ufal.html | sort | uniq -c | sort -nr |less 638 grep -o '<[a-z]' ufal.html 639 grep -o '<[a-z]*' ufal.html 640 grep -o '<[a-z]+' ufal.html 641 grep -o '<[a-z0-9]+' ufal.html 642 grep -o '<[A-Za-z0-9]+' ufal.html 643 grep -o '<[[:alnum:]]+' ufal.html 644 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr 645 grep -o '<[/[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr 646 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr 647 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr | sed 's/$/>/' 648 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr | sed 's/$/>\n/' 649 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr | sed 's/$/>/' 650 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr 651 grep -o '<[[:alnum:]]+' ufal.html|sort | uniq -c | sort -nr | sed 's/]*' ufal.html 658 cat ufal.html 659 cat ufal.html | sed 's/<.*>//' 660 cat ufal.html 661 cat ufal.html | sed 's/<[^>]*>//' 662 cat ufal.html | sed 's/<[^>]*>//' 663 cat ufal.html | sed 's/<[^>]*>//g' 664 cat ufal.html | sed 's/<[^>]*>//g'|grep . 665 cat ufal.html | sed 's/<[^>]*>//g'|grep '[[:alpha:]]' 666 cat ufal.html | sed 's/<[^>]*>//g'|grep '[[:alpha:]]'|sed 's/[[:punct:][:space:]]//g' 667 cat ufal.html | sed 's/<[^>]*>//g'|grep '[[:alpha:]]'|sed 's/[[:punct:][:space:]]/\n/g' 668 cat ufal.html | sed 's/<[^>]*>//g'|grep '[[:alpha:]]'|sed 's/[[:punct:][:space:]]/\n/g' | grep . 669 cat ufal.html | sed 's/<[^>]*>//g'|grep '[[:alpha:]]'|sed 's/[[:punct:][:space:]]/\n/g' | grep . > words 670 tail -n -1 words 671 head -n +2 words 672 tail -n +2 words 673 tail -n +2 words > words_2 674 man head 675 head -n -1 words 676 head -n -1 words > words_1 677 paste words_1 words_2|less 678 paste words_1 words_2|grep '^[A-Z].*\t[A-Z]' 679 paste words_1 words_2|grep -E '^[A-Z].*\t[A-Z]' 680 paste words_1 words_2|grep -P '^[A-Z].*\t[A-Z]' 681 paste words_1 words_2|grep '^[A-Z].* [A-Z]' 682 paste words_1 words_2|grep '^[A-Z].* [A-Z]' 683 paste words_1 words_2|grep '[A-Z].*[A-Z]' 684 paste words_1 words_2|grep '[A-Z].*[[:space:]][A-Z]' 685 paste words_1 words_2|grep '[[:upper:]].*[[:space:]][A-Z]' 686 paste words_1 words_2|grep '[[:upper:]].*[[:space:]][[:upper:]]' 687 paste words_1 words_2|grep '[A-Z].*[[:space:]][A-Z]' 688 paste words_1 words_2|grep '[A-Z].*[[:space:]][A-Z]'|sort|uniq -c|sort -nr | less 689 history 690 history > ~/history_from_2019_11_07