You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openbox/bin/clopper-ob-bash

13 lines
361 B
Bash

#!/bin/bash
##
# This is the code-clopper-opebox specific bash. It should be used to execute bash
# scripts that need some standard functions to be predefined.
here() {
dirname "$(readlink -f "${BASH_SOURCE[0]}")"
}
source "$(here)/../lib/common-functions.bash"
# Source any script that is passed as parameter and pass it all other arguments.
source "$@"