├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── Snippets.md ├── Solutions ├── fortune ├── multigame └── sysreport ├── dir1 └── lorem.txt ├── dir2 └── lorem.txt ├── dir3 └── lorem.txt └── lorem.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/README.md -------------------------------------------------------------------------------- /Snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/Snippets.md -------------------------------------------------------------------------------- /Solutions/fortune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/Solutions/fortune -------------------------------------------------------------------------------- /Solutions/multigame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/Solutions/multigame -------------------------------------------------------------------------------- /Solutions/sysreport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/Solutions/sysreport -------------------------------------------------------------------------------- /dir1/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/dir1/lorem.txt -------------------------------------------------------------------------------- /dir2/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/dir2/lorem.txt -------------------------------------------------------------------------------- /dir3/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/dir3/lorem.txt -------------------------------------------------------------------------------- /lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-bash-scripting-3212393/HEAD/lorem.txt --------------------------------------------------------------------------------