├── .devcontainer └── devcontainer.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── create-resource-group └── create_resource_group ├── modifying-file-permissions ├── newFile.txt ├── octal.txt └── script.sh ├── redirection-and-pipelines ├── error.txt ├── output.txt ├── output2.txt ├── paragrah.txt ├── part1.txt ├── part2.txt ├── part3.txt └── part4.txt ├── viewing-files ├── fake001.log ├── fake002.log ├── quotes01.txt └── quotes02.txt ├── what-are-case-statements └── case_statement ├── what-are-conditional-statements └── is_number_even ├── what-are-functions └── add_numbers ├── what-are-loops ├── for_loop_new_c ├── for_loop_traditional ├── loop_and_break ├── until_loop └── while_loop ├── what-is-a-bash-script └── hello_world └── what-is-a-variable └── hello_variable /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /create-resource-group/create_resource_group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/create-resource-group/create_resource_group -------------------------------------------------------------------------------- /modifying-file-permissions/newFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modifying-file-permissions/octal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/modifying-file-permissions/octal.txt -------------------------------------------------------------------------------- /modifying-file-permissions/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/modifying-file-permissions/script.sh -------------------------------------------------------------------------------- /redirection-and-pipelines/error.txt: -------------------------------------------------------------------------------- 1 | ls: cannot access './dir': No such file or directory 2 | -------------------------------------------------------------------------------- /redirection-and-pipelines/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/redirection-and-pipelines/output.txt -------------------------------------------------------------------------------- /redirection-and-pipelines/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/redirection-and-pipelines/output2.txt -------------------------------------------------------------------------------- /redirection-and-pipelines/paragrah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/redirection-and-pipelines/paragrah.txt -------------------------------------------------------------------------------- /redirection-and-pipelines/part1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/redirection-and-pipelines/part1.txt -------------------------------------------------------------------------------- /redirection-and-pipelines/part2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/redirection-and-pipelines/part2.txt -------------------------------------------------------------------------------- /redirection-and-pipelines/part3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redirection-and-pipelines/part4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewing-files/fake001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/viewing-files/fake001.log -------------------------------------------------------------------------------- /viewing-files/fake002.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/viewing-files/fake002.log -------------------------------------------------------------------------------- /viewing-files/quotes01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/viewing-files/quotes01.txt -------------------------------------------------------------------------------- /viewing-files/quotes02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/viewing-files/quotes02.txt -------------------------------------------------------------------------------- /what-are-case-statements/case_statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-case-statements/case_statement -------------------------------------------------------------------------------- /what-are-conditional-statements/is_number_even: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-conditional-statements/is_number_even -------------------------------------------------------------------------------- /what-are-functions/add_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-functions/add_numbers -------------------------------------------------------------------------------- /what-are-loops/for_loop_new_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-loops/for_loop_new_c -------------------------------------------------------------------------------- /what-are-loops/for_loop_traditional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-loops/for_loop_traditional -------------------------------------------------------------------------------- /what-are-loops/loop_and_break: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-loops/loop_and_break -------------------------------------------------------------------------------- /what-are-loops/until_loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-loops/until_loop -------------------------------------------------------------------------------- /what-are-loops/while_loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/bash-for-beginners/HEAD/what-are-loops/while_loop -------------------------------------------------------------------------------- /what-is-a-bash-script/hello_world: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Welcome to your first Bash Script 4 | 5 | echo 'Hello World!' -------------------------------------------------------------------------------- /what-is-a-variable/hello_variable: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Welcome to your first Bash Script 4 | 5 | echo 'Hello World!' --------------------------------------------------------------------------------