Spaces:
Sleeping
Sleeping
File size: 624 Bytes
c96b98a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/bash
############################################################################
#
# Collection of helper functions to import in other scripts
#
############################################################################
space_to_continue() {
read -n1 -r -p "Press Enter/Space to continue... " key
if [ "$key" = '' ]; then
# Space pressed, pass
:
else
exit 1
fi
echo ""
}
print_horizontal_line() {
echo "------------------------------------------------------------"
}
print_heading() {
print_horizontal_line
echo "-*- $1"
print_horizontal_line
}
print_info() {
echo "-*- $1"
}
|