mirror of
https://github.com/GeiserX/genieacs-services
synced 2026-04-21 07:47:16 +00:00
10 lines
96 B
Bash
10 lines
96 B
Bash
#!/bin/bash
|
|
|
|
ENV_FILE="$1"
|
|
CMD=${@:2}
|
|
|
|
set -o allexport
|
|
source $ENV_FILE
|
|
set +o allexport
|
|
|
|
$CMD
|