├── 1.First_Script.bash ├── 2.Key_board_Input.bash ├── 3.Shell_Menu.bash ├── 4-1.For_Loop.bash ├── 4-2.For_Loop.bash ├── 4-3.For_Loop.bash ├── 5.If_Statements.bash ├── 6.Lists.bash ├── 7.Strings.bash ├── 8-1.Functions.bash ├── 8-2.Functions.bash ├── 8-3.Functions.bash ├── 8-4.Functions.bash ├── 9-1.Files.bash ├── 9-2.Files.bash ├── 9-3.Files.bash ├── README.md └── _config.yaml /1.First_Script.bash: -------------------------------------------------------------------------------- 1 | echo "Hello!" 2 | -------------------------------------------------------------------------------- /2.Key_board_Input.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/2.Key_board_Input.bash -------------------------------------------------------------------------------- /3.Shell_Menu.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/3.Shell_Menu.bash -------------------------------------------------------------------------------- /4-1.For_Loop.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/4-1.For_Loop.bash -------------------------------------------------------------------------------- /4-2.For_Loop.bash: -------------------------------------------------------------------------------- 1 | for i in {1..10} 2 | do 3 | echo "$i" 4 | done 5 | -------------------------------------------------------------------------------- /4-3.For_Loop.bash: -------------------------------------------------------------------------------- 1 | for i in {1..10..2} 2 | do 3 | echo "$i" 4 | done 5 | -------------------------------------------------------------------------------- /5.If_Statements.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/5.If_Statements.bash -------------------------------------------------------------------------------- /6.Lists.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/6.Lists.bash -------------------------------------------------------------------------------- /7.Strings.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/7.Strings.bash -------------------------------------------------------------------------------- /8-1.Functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/8-1.Functions.bash -------------------------------------------------------------------------------- /8-2.Functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/8-2.Functions.bash -------------------------------------------------------------------------------- /8-3.Functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/8-3.Functions.bash -------------------------------------------------------------------------------- /8-4.Functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/8-4.Functions.bash -------------------------------------------------------------------------------- /9-1.Files.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/9-1.Files.bash -------------------------------------------------------------------------------- /9-2.Files.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/9-2.Files.bash -------------------------------------------------------------------------------- /9-3.Files.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/9-3.Files.bash -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/linux-bash-scripting/HEAD/README.md -------------------------------------------------------------------------------- /_config.yaml: -------------------------------------------------------------------------------- 1 | title: "" 2 | --------------------------------------------------------------------------------