Bash: Difference between revisions
Jump to navigation
Jump to search
Line 44: | Line 44: | ||
* [[Bash Processing of Command Line Parameters that Include Spaces|Processing of Command Line Parameters that Include Spaces]] | * [[Bash Processing of Command Line Parameters that Include Spaces|Processing of Command Line Parameters that Include Spaces]] | ||
* [[Bash Standard Command Line Option Processing Pattern|Standard Command Line Option Processing Pattern]] | * [[Bash Standard Command Line Option Processing Pattern|Standard Command Line Option Processing Pattern]] | ||
* [https://github.com/ovidiuf/ | * [https://github.com/ovidiuf/shell-tools/blob/master/lib/bash.shlib Common bash functions (bash.shlib)] | ||
* [https://github.com/ovidiuf/templates/blob/master/gradle.shlib Common Gradle wrapper functions (gradle.shlib)] | * [https://github.com/ovidiuf/templates/blob/master/gradle.shlib Common Gradle wrapper functions (gradle.shlib)] | ||
* [https://github.com/ovidiuf/templates/blob/master/maven.shlib Common Maven wrapper functions (maven.shlib)] | * [https://github.com/ovidiuf/templates/blob/master/maven.shlib Common Maven wrapper functions (maven.shlib)] |
Revision as of 18:41, 14 May 2019
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 | exec |
External Commands
tail |
bash Script Library
- Processing of Command Line Parameters that Include Spaces
- Standard Command Line Option Processing Pattern
- 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
- Repeat a Command Until it Succeeds or a Timeout Occurs
- Interactively Read Input from stdin
- Recommended pattern for boolean values in scripts