14 lines
320 B
Bash
14 lines
320 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Requires the printing.sh helper to be sourced.
|
||
|
|
||
|
#---------------------------------------------------------------------------------------------------
|
||
|
# API
|
||
|
#---------------------------------------------------------------------------------------------------
|
||
|
|
||
|
abort() {
|
||
|
error "\nAborting...\n"
|
||
|
exit 1
|
||
|
}
|
||
|
|