├── 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.txt │ ├── ex01_basic_match │ │ └── sample.txt │ ├── ex02_basic_options.txt │ ├── ex02_basic_options │ │ └── sample.txt │ ├── ex03_multiple_string_match.txt │ ├── ex03_multiple_string_match │ │ └── sample.txt │ ├── ex04_filenames.txt │ ├── ex04_filenames │ │ ├── greeting.txt │ │ ├── poem.txt │ │ └── sample.txt │ ├── ex05_word_line_matching.txt │ ├── ex05_word_line_matching │ │ ├── greeting.txt │ │ ├── sample.txt │ │ └── words.txt │ ├── ex06_ABC_context_matching.txt │ ├── ex06_ABC_context_matching │ │ └── sample.txt │ ├── ex07_recursive_search.txt │ ├── ex07_recursive_search │ │ ├── msg │ │ │ ├── greeting.txt │ │ │ └── sample.txt │ │ ├── poem.txt │ │ ├── progs │ │ │ ├── hello.py │ │ │ └── hello.sh │ │ └── words.txt │ ├── ex08_search_pattern_from_file.txt │ ├── ex08_search_pattern_from_file │ │ ├── baz.txt │ │ ├── foo.txt │ │ └── words.txt │ ├── ex09_regex_anchors.txt │ ├── ex09_regex_anchors │ │ └── sample.txt │ ├── ex10_regex_this_or_that.txt │ ├── ex10_regex_this_or_that │ │ └── sample.txt │ ├── ex11_regex_quantifiers.txt │ ├── ex11_regex_quantifiers │ │ └── garbled.txt │ ├── ex12_regex_character_class_part1.txt │ ├── ex12_regex_character_class_part1 │ │ └── sample_words.txt │ ├── ex13_regex_character_class_part2.txt │ ├── ex13_regex_character_class_part2 │ │ └── sample.txt │ ├── ex14_regex_grouping_and_backreference.txt │ ├── ex14_regex_grouping_and_backreference │ │ └── sample.txt │ ├── ex15_regex_PCRE.txt │ ├── ex15_regex_PCRE │ │ └── sample.txt │ ├── ex16_misc_and_extras.txt │ ├── ex16_misc_and_extras │ │ ├── garbled.txt │ │ ├── poem.txt │ │ └── sample.txt │ └── solve └── README.md ├── file_attributes.md ├── gnu_awk.md ├── gnu_grep.md ├── gnu_sed.md ├── images ├── color_option.png ├── colordiff.png ├── highlight_string_whole_file_op.png └── wdiff_to_colordiff.png ├── miscellaneous.md ├── overview_presentation ├── baz.json ├── cli_text_processing.pdf ├── 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 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/README.md -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex01_basic_match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex01_basic_match.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex02_basic_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex02_basic_options.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex03_multiple_string_match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex03_multiple_string_match.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex04_filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex04_filenames.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex05_word_line_matching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex05_word_line_matching.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex06_ABC_context_matching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex06_ABC_context_matching.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex07_recursive_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex07_recursive_search.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex08_search_pattern_from_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex08_search_pattern_from_file.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex09_regex_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex09_regex_anchors.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex10_regex_this_or_that.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex10_regex_this_or_that.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex11_regex_quantifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex11_regex_quantifiers.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex12_regex_character_class_part1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex12_regex_character_class_part1.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex13_regex_character_class_part2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex13_regex_character_class_part2.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex14_regex_grouping_and_backreference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex14_regex_grouping_and_backreference.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex15_regex_PCRE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex15_regex_PCRE.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/.ref_solutions/ex16_misc_and_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/.ref_solutions/ex16_misc_and_extras.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex01_basic_match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex01_basic_match.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex01_basic_match/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex01_basic_match/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex02_basic_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex02_basic_options.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex02_basic_options/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex02_basic_options/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex03_multiple_string_match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex03_multiple_string_match.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex03_multiple_string_match/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex03_multiple_string_match/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex04_filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex04_filenames.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex04_filenames/greeting.txt: -------------------------------------------------------------------------------- 1 | Hi, how are you? 2 | 3 | Hola :) 4 | 5 | Hello world 6 | 7 | Good day 8 | 9 | Rock on 10 | -------------------------------------------------------------------------------- /exercises/GNU_grep/ex04_filenames/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex04_filenames/poem.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex04_filenames/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex04_filenames/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex05_word_line_matching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex05_word_line_matching.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex05_word_line_matching/greeting.txt: -------------------------------------------------------------------------------- 1 | Hi, how are you? 2 | 3 | Hola :) 4 | 5 | Hello World 6 | 7 | Good day 8 | 9 | Rock on 10 | -------------------------------------------------------------------------------- /exercises/GNU_grep/ex05_word_line_matching/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex05_word_line_matching/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex05_word_line_matching/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex05_word_line_matching/words.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex06_ABC_context_matching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex06_ABC_context_matching.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex06_ABC_context_matching/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex06_ABC_context_matching/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex07_recursive_search.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search/msg/greeting.txt: -------------------------------------------------------------------------------- 1 | Hi, how are you? 2 | 3 | Hola :) 4 | 5 | Hello World 6 | 7 | Good day 8 | 9 | Rock on 10 | -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search/msg/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex07_recursive_search/msg/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex07_recursive_search/poem.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search/progs/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | print("Hello World") 4 | -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search/progs/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex07_recursive_search/progs/hello.sh -------------------------------------------------------------------------------- /exercises/GNU_grep/ex07_recursive_search/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex07_recursive_search/words.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex08_search_pattern_from_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex08_search_pattern_from_file.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex08_search_pattern_from_file/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex08_search_pattern_from_file/baz.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex08_search_pattern_from_file/foo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex08_search_pattern_from_file/foo.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex08_search_pattern_from_file/words.txt: -------------------------------------------------------------------------------- 1 | car 2 | part 3 | to 4 | read 5 | -------------------------------------------------------------------------------- /exercises/GNU_grep/ex09_regex_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex09_regex_anchors.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex09_regex_anchors/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex09_regex_anchors/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex10_regex_this_or_that.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex10_regex_this_or_that.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex10_regex_this_or_that/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex10_regex_this_or_that/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex11_regex_quantifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex11_regex_quantifiers.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex11_regex_quantifiers/garbled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex11_regex_quantifiers/garbled.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex12_regex_character_class_part1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex12_regex_character_class_part1.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex12_regex_character_class_part1/sample_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex12_regex_character_class_part1/sample_words.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex13_regex_character_class_part2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex13_regex_character_class_part2.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex13_regex_character_class_part2/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex13_regex_character_class_part2/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex14_regex_grouping_and_backreference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex14_regex_grouping_and_backreference.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex14_regex_grouping_and_backreference/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex14_regex_grouping_and_backreference/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex15_regex_PCRE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex15_regex_PCRE.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex15_regex_PCRE/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex15_regex_PCRE/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex16_misc_and_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex16_misc_and_extras.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex16_misc_and_extras/garbled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex16_misc_and_extras/garbled.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex16_misc_and_extras/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex16_misc_and_extras/poem.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/ex16_misc_and_extras/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/ex16_misc_and_extras/sample.txt -------------------------------------------------------------------------------- /exercises/GNU_grep/solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/GNU_grep/solve -------------------------------------------------------------------------------- /exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/exercises/README.md -------------------------------------------------------------------------------- /file_attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/file_attributes.md -------------------------------------------------------------------------------- /gnu_awk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/gnu_awk.md -------------------------------------------------------------------------------- /gnu_grep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/gnu_grep.md -------------------------------------------------------------------------------- /gnu_sed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/gnu_sed.md -------------------------------------------------------------------------------- /images/color_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/images/color_option.png -------------------------------------------------------------------------------- /images/colordiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/images/colordiff.png -------------------------------------------------------------------------------- /images/highlight_string_whole_file_op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/images/highlight_string_whole_file_op.png -------------------------------------------------------------------------------- /images/wdiff_to_colordiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/images/wdiff_to_colordiff.png -------------------------------------------------------------------------------- /miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/miscellaneous.md -------------------------------------------------------------------------------- /overview_presentation/baz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/overview_presentation/baz.json -------------------------------------------------------------------------------- /overview_presentation/cli_text_processing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/overview_presentation/cli_text_processing.pdf -------------------------------------------------------------------------------- /overview_presentation/foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/overview_presentation/foo.xml -------------------------------------------------------------------------------- /overview_presentation/greeting.txt: -------------------------------------------------------------------------------- 1 | Hi there 2 | Have a nice day 3 | -------------------------------------------------------------------------------- /overview_presentation/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/overview_presentation/sample.txt -------------------------------------------------------------------------------- /perl_the_swiss_knife.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/perl_the_swiss_knife.md -------------------------------------------------------------------------------- /restructure_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/restructure_text.md -------------------------------------------------------------------------------- /ruby_one_liners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/ruby_one_liners.md -------------------------------------------------------------------------------- /sorting_stuff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/sorting_stuff.md -------------------------------------------------------------------------------- /tail_less_cat_head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/tail_less_cat_head.md -------------------------------------------------------------------------------- /whats_the_difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/whats_the_difference.md -------------------------------------------------------------------------------- /wheres_my_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnbyexample/Command-line-text-processing/HEAD/wheres_my_file.md --------------------------------------------------------------------------------