├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── TODO ├── docs ├── .nojekyll ├── CONTRIBUTING.md ├── README.md ├── _404.md ├── _sidebar.md ├── about.md ├── bash.png ├── bash.svg ├── commandLine │ ├── file_system.md │ ├── linux_env.md │ ├── more_command.md │ ├── security.md │ ├── shell_first_view.md │ └── understand_shell.md ├── index.html ├── shellAdvanced │ ├── more_gawk.md │ ├── more_sed.md │ ├── other_shell.md │ ├── regular_expression.md │ ├── sed_gawk_basic.md │ ├── shell_GUI.md │ └── shell_function.md └── shellBasic │ ├── more_structured_command.md │ ├── shell_basic.md │ ├── shell_control.md │ ├── shell_input.md │ ├── shell_output.md │ └── structured_command.md ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/_404.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/bash.png -------------------------------------------------------------------------------- /docs/bash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/bash.svg -------------------------------------------------------------------------------- /docs/commandLine/file_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/commandLine/file_system.md -------------------------------------------------------------------------------- /docs/commandLine/linux_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/commandLine/linux_env.md -------------------------------------------------------------------------------- /docs/commandLine/more_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/commandLine/more_command.md -------------------------------------------------------------------------------- /docs/commandLine/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/commandLine/security.md -------------------------------------------------------------------------------- /docs/commandLine/shell_first_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/commandLine/shell_first_view.md -------------------------------------------------------------------------------- /docs/commandLine/understand_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/commandLine/understand_shell.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/shellAdvanced/more_gawk.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/shellAdvanced/more_sed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellAdvanced/more_sed.md -------------------------------------------------------------------------------- /docs/shellAdvanced/other_shell.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/shellAdvanced/regular_expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellAdvanced/regular_expression.md -------------------------------------------------------------------------------- /docs/shellAdvanced/sed_gawk_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellAdvanced/sed_gawk_basic.md -------------------------------------------------------------------------------- /docs/shellAdvanced/shell_GUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellAdvanced/shell_GUI.md -------------------------------------------------------------------------------- /docs/shellAdvanced/shell_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellAdvanced/shell_function.md -------------------------------------------------------------------------------- /docs/shellBasic/more_structured_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellBasic/more_structured_command.md -------------------------------------------------------------------------------- /docs/shellBasic/shell_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellBasic/shell_basic.md -------------------------------------------------------------------------------- /docs/shellBasic/shell_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellBasic/shell_control.md -------------------------------------------------------------------------------- /docs/shellBasic/shell_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellBasic/shell_input.md -------------------------------------------------------------------------------- /docs/shellBasic/shell_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellBasic/shell_output.md -------------------------------------------------------------------------------- /docs/shellBasic/structured_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/docs/shellBasic/structured_command.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchLinuxStudio/ShellTutorial/HEAD/yarn.lock --------------------------------------------------------------------------------