gitextract_wr_ra6a8/ ├── README.md ├── exercises/ │ ├── GNU_grep/ │ │ ├── .ref_solutions/ │ │ │ ├── ex01_basic_match.txt │ │ │ ├── ex02_basic_options.txt │ │ │ ├── ex03_multiple_string_match.txt │ │ │ ├── ex04_filenames.txt │ │ │ ├── ex05_word_line_matching.txt │ │ │ ├── ex06_ABC_context_matching.txt │ │ │ ├── ex07_recursive_search.txt │ │ │ ├── ex08_search_pattern_from_file.txt │ │ │ ├── ex09_regex_anchors.txt │ │ │ ├── ex10_regex_this_or_that.txt │ │ │ ├── ex11_regex_quantifiers.txt │ │ │ ├── ex12_regex_character_class_part1.txt │ │ │ ├── ex13_regex_character_class_part2.txt │ │ │ ├── ex14_regex_grouping_and_backreference.txt │ │ │ ├── ex15_regex_PCRE.txt │ │ │ └── ex16_misc_and_extras.txt │ │ ├── ex01_basic_match/ │ │ │ └── sample.txt │ │ ├── ex01_basic_match.txt │ │ ├── ex02_basic_options/ │ │ │ └── sample.txt │ │ ├── ex02_basic_options.txt │ │ ├── ex03_multiple_string_match/ │ │ │ └── sample.txt │ │ ├── ex03_multiple_string_match.txt │ │ ├── ex04_filenames/ │ │ │ ├── greeting.txt │ │ │ ├── poem.txt │ │ │ └── sample.txt │ │ ├── ex04_filenames.txt │ │ ├── ex05_word_line_matching/ │ │ │ ├── greeting.txt │ │ │ ├── sample.txt │ │ │ └── words.txt │ │ ├── ex05_word_line_matching.txt │ │ ├── ex06_ABC_context_matching/ │ │ │ └── sample.txt │ │ ├── ex06_ABC_context_matching.txt │ │ ├── ex07_recursive_search/ │ │ │ ├── msg/ │ │ │ │ ├── greeting.txt │ │ │ │ └── sample.txt │ │ │ ├── poem.txt │ │ │ ├── progs/ │ │ │ │ ├── hello.py │ │ │ │ └── hello.sh │ │ │ └── words.txt │ │ ├── ex07_recursive_search.txt │ │ ├── ex08_search_pattern_from_file/ │ │ │ ├── baz.txt │ │ │ ├── foo.txt │ │ │ └── words.txt │ │ ├── ex08_search_pattern_from_file.txt │ │ ├── ex09_regex_anchors/ │ │ │ └── sample.txt │ │ ├── ex09_regex_anchors.txt │ │ ├── ex10_regex_this_or_that/ │ │ │ └── sample.txt │ │ ├── ex10_regex_this_or_that.txt │ │ ├── ex11_regex_quantifiers/ │ │ │ └── garbled.txt │ │ ├── ex11_regex_quantifiers.txt │ │ ├── ex12_regex_character_class_part1/ │ │ │ └── sample_words.txt │ │ ├── ex12_regex_character_class_part1.txt │ │ ├── ex13_regex_character_class_part2/ │ │ │ └── sample.txt │ │ ├── ex13_regex_character_class_part2.txt │ │ ├── ex14_regex_grouping_and_backreference/ │ │ │ └── sample.txt │ │ ├── ex14_regex_grouping_and_backreference.txt │ │ ├── ex15_regex_PCRE/ │ │ │ └── sample.txt │ │ ├── ex15_regex_PCRE.txt │ │ ├── ex16_misc_and_extras/ │ │ │ ├── garbled.txt │ │ │ ├── poem.txt │ │ │ └── sample.txt │ │ ├── ex16_misc_and_extras.txt │ │ └── solve │ └── README.md ├── file_attributes.md ├── gnu_awk.md ├── gnu_grep.md ├── gnu_sed.md ├── miscellaneous.md ├── overview_presentation/ │ ├── baz.json │ ├── foo.xml │ ├── greeting.txt │ └── sample.txt ├── perl_the_swiss_knife.md ├── restructure_text.md ├── ruby_one_liners.md ├── sorting_stuff.md ├── tail_less_cat_head.md ├── whats_the_difference.md └── wheres_my_file.md