├── Readme.md ├── bonus project - Jarvis.sh ├── case-full-script.sh ├── case.sh ├── exitcodes.sh ├── first-function.sh ├── functionposargu.sh ├── hellothere.sh ├── ifelifelse.sh ├── interactiveshell.sh ├── login.sh ├── posargu.sh ├── shelltest.sh ├── var-in-scopes.sh └── var-inscopes-local.sh /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/Readme.md -------------------------------------------------------------------------------- /bonus project - Jarvis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/bonus project - Jarvis.sh -------------------------------------------------------------------------------- /case-full-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/case-full-script.sh -------------------------------------------------------------------------------- /case.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/case.sh -------------------------------------------------------------------------------- /exitcodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/exitcodes.sh -------------------------------------------------------------------------------- /first-function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/first-function.sh -------------------------------------------------------------------------------- /functionposargu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/functionposargu.sh -------------------------------------------------------------------------------- /hellothere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/hellothere.sh -------------------------------------------------------------------------------- /ifelifelse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/ifelifelse.sh -------------------------------------------------------------------------------- /interactiveshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/interactiveshell.sh -------------------------------------------------------------------------------- /login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/login.sh -------------------------------------------------------------------------------- /posargu.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo Hello $1 $2 4 | -------------------------------------------------------------------------------- /shelltest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo Hello World! 3 | -------------------------------------------------------------------------------- /var-in-scopes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/var-in-scopes.sh -------------------------------------------------------------------------------- /var-inscopes-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herbertlindemans/bash-intro-tutorial/HEAD/var-inscopes-local.sh --------------------------------------------------------------------------------