mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 11:56:26 +02:00
15 lines
253 B
Bash
15 lines
253 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# Check parameters
|
||
|
[ $# -ne 3 ] && { echo "Usage: $0 <key> <from> <to>"; exit 1; }
|
||
|
|
||
|
# Load parameters
|
||
|
key=$1
|
||
|
from=$2
|
||
|
to=$3
|
||
|
|
||
|
# Load configuration
|
||
|
wai=$(dirname $(readlink -f "$0")) # Current script directory
|
||
|
source ${wai}/config.mk
|
||
|
|