mirror of
https://github.com/bol-van/zapret.git
synced 2025-04-19 21:42:59 +03:00
11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
# run script specified in config
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
EXEDIR=$(dirname "$SCRIPT")
|
|
|
|
. "$EXEDIR/../config"
|
|
|
|
[ -z "$GETLIST" ] && exit 0
|
|
[ -x "$EXEDIR/$GETLIST" ] && exec "$EXEDIR/$GETLIST"
|