mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
236 B

public_script() {
local a="$1"; shift
addcode up 5 5 "$a up $*"
addcode down 5 5 "$a down $*"
}
public_run_up() {
addcode up 5 5 "$*"
}
public_run_down() {
addcode down 5 5 "$*"
}
public_code() {
addcode $1 $2 5 "$3"
}