├── .github ├── CODEOWNERS └── workflows │ └── test_and_build.yml ├── .gitignore ├── AUTHORS ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── Makefile ├── README.md ├── _config.yml ├── _episodes ├── .gitkeep ├── 00-hpc-intro.md ├── 01-connecting.md ├── 02-navigation.md ├── 03-files.md ├── 04-wildcards-pipes.md └── 05-scripts.md ├── _extras ├── .gitkeep ├── about.md ├── discuss.md ├── figures.md └── guide.md ├── _includes ├── all_figures.html ├── links.md └── snippets │ └── 01 │ ├── login_output.ComputeCanada_Graham │ └── login_output.EPCC_Cirrus ├── aio.md ├── bin ├── chunk-options.R ├── extract_figures.py ├── generate_md_episodes.R ├── knit_lessons.sh ├── lesson_check.py ├── lesson_initialize.py ├── markdown_ast.rb ├── repo_check.py ├── run-make-docker-serve.sh ├── test_lesson_check.py ├── util.py └── workshop_check.py ├── code └── .gitkeep ├── data └── .gitkeep ├── fig ├── .gitkeep ├── filesystem-challenge.odg ├── filesystem-challenge.png ├── filesystem-challenge.svg ├── filesystem.png ├── filesystem.svg ├── find-file-tree.odg ├── find-file-tree.png ├── find-file-tree.svg ├── home-directories.png ├── home-directories.svg ├── homedir.odg ├── homedir.svg ├── linux-cloud.jpg ├── nano-screenshot.png ├── redirects-and-pipes.png ├── redirects-and-pipes.svg └── vlad-homedir.png ├── files ├── .gitkeep └── bash-lesson.tar.gz ├── index.md ├── lesson-outline.md ├── reference.md └── setup.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/test_and_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/.github/workflows/test_and_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | FIXME: list authors' names and email addresses. 2 | -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- 1 | FIXME: describe how to cite this lesson. 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_config.yml -------------------------------------------------------------------------------- /_episodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes/00-hpc-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_episodes/00-hpc-intro.md -------------------------------------------------------------------------------- /_episodes/01-connecting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_episodes/01-connecting.md -------------------------------------------------------------------------------- /_episodes/02-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_episodes/02-navigation.md -------------------------------------------------------------------------------- /_episodes/03-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_episodes/03-files.md -------------------------------------------------------------------------------- /_episodes/04-wildcards-pipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_episodes/04-wildcards-pipes.md -------------------------------------------------------------------------------- /_episodes/05-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_episodes/05-scripts.md -------------------------------------------------------------------------------- /_extras/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_extras/about.md -------------------------------------------------------------------------------- /_extras/discuss.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Discussion 3 | --- 4 | 5 | {% include links.md %} 6 | -------------------------------------------------------------------------------- /_extras/figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_extras/figures.md -------------------------------------------------------------------------------- /_extras/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_extras/guide.md -------------------------------------------------------------------------------- /_includes/all_figures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_includes/all_figures.html -------------------------------------------------------------------------------- /_includes/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_includes/links.md -------------------------------------------------------------------------------- /_includes/snippets/01/login_output.ComputeCanada_Graham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_includes/snippets/01/login_output.ComputeCanada_Graham -------------------------------------------------------------------------------- /_includes/snippets/01/login_output.EPCC_Cirrus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/_includes/snippets/01/login_output.EPCC_Cirrus -------------------------------------------------------------------------------- /aio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/aio.md -------------------------------------------------------------------------------- /bin/chunk-options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/chunk-options.R -------------------------------------------------------------------------------- /bin/extract_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/extract_figures.py -------------------------------------------------------------------------------- /bin/generate_md_episodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/generate_md_episodes.R -------------------------------------------------------------------------------- /bin/knit_lessons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/knit_lessons.sh -------------------------------------------------------------------------------- /bin/lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/lesson_check.py -------------------------------------------------------------------------------- /bin/lesson_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/lesson_initialize.py -------------------------------------------------------------------------------- /bin/markdown_ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/markdown_ast.rb -------------------------------------------------------------------------------- /bin/repo_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/repo_check.py -------------------------------------------------------------------------------- /bin/run-make-docker-serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/run-make-docker-serve.sh -------------------------------------------------------------------------------- /bin/test_lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/test_lesson_check.py -------------------------------------------------------------------------------- /bin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/util.py -------------------------------------------------------------------------------- /bin/workshop_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/bin/workshop_check.py -------------------------------------------------------------------------------- /code/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fig/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fig/filesystem-challenge.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/filesystem-challenge.odg -------------------------------------------------------------------------------- /fig/filesystem-challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/filesystem-challenge.png -------------------------------------------------------------------------------- /fig/filesystem-challenge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/filesystem-challenge.svg -------------------------------------------------------------------------------- /fig/filesystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/filesystem.png -------------------------------------------------------------------------------- /fig/filesystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/filesystem.svg -------------------------------------------------------------------------------- /fig/find-file-tree.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/find-file-tree.odg -------------------------------------------------------------------------------- /fig/find-file-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/find-file-tree.png -------------------------------------------------------------------------------- /fig/find-file-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/find-file-tree.svg -------------------------------------------------------------------------------- /fig/home-directories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/home-directories.png -------------------------------------------------------------------------------- /fig/home-directories.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/home-directories.svg -------------------------------------------------------------------------------- /fig/homedir.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/homedir.odg -------------------------------------------------------------------------------- /fig/homedir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/homedir.svg -------------------------------------------------------------------------------- /fig/linux-cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/linux-cloud.jpg -------------------------------------------------------------------------------- /fig/nano-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/nano-screenshot.png -------------------------------------------------------------------------------- /fig/redirects-and-pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/redirects-and-pipes.png -------------------------------------------------------------------------------- /fig/redirects-and-pipes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/redirects-and-pipes.svg -------------------------------------------------------------------------------- /fig/vlad-homedir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/fig/vlad-homedir.png -------------------------------------------------------------------------------- /files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/bash-lesson.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/files/bash-lesson.tar.gz -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/index.md -------------------------------------------------------------------------------- /lesson-outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/lesson-outline.md -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/reference.md -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpc-carpentry/hpc-shell/HEAD/setup.md --------------------------------------------------------------------------------