Bash: Difference between revisions
Jump to navigation
Jump to search
Line 39: | Line 39: | ||
* [https://github.com/ovidiuf/templates/blob/master/bash.shlib Common bash functions (bash.shlib)] | * [https://github.com/ovidiuf/templates/blob/master/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/maven.shlib Common Maven wrapper functions (maven.shlib)] | |||
* [[Bash script that reports the number of threads of a Java process|Report the number of threads of a Java process]] | * [[Bash script that reports the number of threads of a Java process|Report the number of threads of a Java process]] | ||
* [[Bash script that generates a random MAC address|Generate a random MAC address]] | * [[Bash script that generates a random MAC address|Generate a random MAC address]] |
Revision as of 06:54, 1 June 2018
External
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