Bash: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
* https://www.gnu.org/software/bash/manual/bashref.html | * https://www.gnu.org/software/bash/manual/bashref.html | ||
* [[File:Bash 4.4 Reference Manual.pdf|Bash 4.4 Reference Manual]] | * [[File:Bash 4.4 Reference Manual.pdf|Bash 4.4 Reference Manual]] | ||
=Installation= | |||
{{Internal|bash Installation|bash Installation}} | |||
=Subjects= | =Subjects= |
Revision as of 02:22, 14 October 2018
External
Installation
Subjects
- Concepts
- bash Variables
- bash Built-In Variables
- Command Line Expansion
- Input/Output
- bash Expressions
- bash Arrays
- Numbers and Arithmetic in bash
- File Name Handling in bash
- bash Script Debugging
- Functions
- Command Substitution
- Process in Background
- Unit Testing for bash
- Handling Signals in bash
Built-In Commands
set | for | printf | if | declare | typeset | type | read | shift test | eval |
bg | fg | jobs |
External Commands
tail |
bash Script Library
- Common bash functions (bash.shlib)
- Common Gradle wrapper functions (gradle.shlib)
- Common Maven wrapper functions (maven.shlib)
- Report the number of threads of a Java process
- Generate a random MAC address
- Processing of Command Line Parameters that Include Spaces
- Repeat a Command Until it Succeeds or a Timeout Occurs
- Interactively Read Input from stdin
- Recommended pattern for boolean values in scripts