├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── _django-meta └── header@3x.png ├── assessment.md ├── files ├── PK.md ├── WordProcessorExample.docx └── nypl_items.csv ├── frontmatter.md ├── image.md ├── images ├── CatWordDoc.png ├── cheat-sheet.gif ├── data.gif ├── example_pipes.png ├── grep.gif ├── hierarchical-filesystem-example.png ├── make-file-folder.gif ├── nano.png ├── nav.gif ├── osx-term.png ├── osx_term.png ├── pipes.gif ├── pipes.png ├── savelinkaschrome.png ├── savelinkaschrome2.png ├── win_term.png └── worddoc.png ├── lessons.md ├── sections ├── 01-what-is-the-command-line.md ├── 02-text-editors.md ├── 03-why-is-the-command-line-useful.md ├── 04-getting-to-the-command-line.md ├── 05-prefatory-pro-tips.md ├── 06-navigation.md ├── 07-creating-files-and-folders.md ├── 08-creating-a-cheat-sheet.md ├── 09-pipes.md ├── 10-exploring-text-data.md ├── 11-interlude.md ├── 12-searching-text-data.md └── 13-what-we-have-learned.md └── theory-to-practice.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *# 3 | .#* 4 | *.dnc 5 | __pycache__ 6 | .DS_Store -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/README.md -------------------------------------------------------------------------------- /_django-meta/header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/_django-meta/header@3x.png -------------------------------------------------------------------------------- /assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/assessment.md -------------------------------------------------------------------------------- /files/PK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/files/PK.md -------------------------------------------------------------------------------- /files/WordProcessorExample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/files/WordProcessorExample.docx -------------------------------------------------------------------------------- /files/nypl_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/files/nypl_items.csv -------------------------------------------------------------------------------- /frontmatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/frontmatter.md -------------------------------------------------------------------------------- /image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/image.md -------------------------------------------------------------------------------- /images/CatWordDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/CatWordDoc.png -------------------------------------------------------------------------------- /images/cheat-sheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/cheat-sheet.gif -------------------------------------------------------------------------------- /images/data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/data.gif -------------------------------------------------------------------------------- /images/example_pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/example_pipes.png -------------------------------------------------------------------------------- /images/grep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/grep.gif -------------------------------------------------------------------------------- /images/hierarchical-filesystem-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/hierarchical-filesystem-example.png -------------------------------------------------------------------------------- /images/make-file-folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/make-file-folder.gif -------------------------------------------------------------------------------- /images/nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/nano.png -------------------------------------------------------------------------------- /images/nav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/nav.gif -------------------------------------------------------------------------------- /images/osx-term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/osx-term.png -------------------------------------------------------------------------------- /images/osx_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/osx_term.png -------------------------------------------------------------------------------- /images/pipes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/pipes.gif -------------------------------------------------------------------------------- /images/pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/pipes.png -------------------------------------------------------------------------------- /images/savelinkaschrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/savelinkaschrome.png -------------------------------------------------------------------------------- /images/savelinkaschrome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/savelinkaschrome2.png -------------------------------------------------------------------------------- /images/win_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/win_term.png -------------------------------------------------------------------------------- /images/worddoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/images/worddoc.png -------------------------------------------------------------------------------- /lessons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/lessons.md -------------------------------------------------------------------------------- /sections/01-what-is-the-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/01-what-is-the-command-line.md -------------------------------------------------------------------------------- /sections/02-text-editors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/02-text-editors.md -------------------------------------------------------------------------------- /sections/03-why-is-the-command-line-useful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/03-why-is-the-command-line-useful.md -------------------------------------------------------------------------------- /sections/04-getting-to-the-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/04-getting-to-the-command-line.md -------------------------------------------------------------------------------- /sections/05-prefatory-pro-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/05-prefatory-pro-tips.md -------------------------------------------------------------------------------- /sections/06-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/06-navigation.md -------------------------------------------------------------------------------- /sections/07-creating-files-and-folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/07-creating-files-and-folders.md -------------------------------------------------------------------------------- /sections/08-creating-a-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/08-creating-a-cheat-sheet.md -------------------------------------------------------------------------------- /sections/09-pipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/09-pipes.md -------------------------------------------------------------------------------- /sections/10-exploring-text-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/10-exploring-text-data.md -------------------------------------------------------------------------------- /sections/11-interlude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/11-interlude.md -------------------------------------------------------------------------------- /sections/12-searching-text-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/12-searching-text-data.md -------------------------------------------------------------------------------- /sections/13-what-we-have-learned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/sections/13-what-we-have-learned.md -------------------------------------------------------------------------------- /theory-to-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHRI-Curriculum/command-line/HEAD/theory-to-practice.md --------------------------------------------------------------------------------