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

  1. public_script() {
  2. local a="$1"; shift
  3. addcode up 5 5 "$a up $*"
  4. addcode down 5 5 "$a down $*"
  5. }
  6. public_run_up() {
  7. addcode up 5 5 "$*"
  8. }
  9. public_run_down() {
  10. addcode down 5 5 "$*"
  11. }
  12. public_code() {
  13. addcode $1 $2 5 "$3"
  14. }