mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-23 18:11:15 +00:00
26 lines
784 B
Plaintext
26 lines
784 B
Plaintext
run_remote() {
|
|
requestedcmd="'$*'"
|
|
echo
|
|
echo '---------------------------------------------------------------------------'
|
|
echo Running $requestedcmd from https://$mgr/confluent-public/os/$profile/scripts/
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
chmod +x $1
|
|
cmd=$1
|
|
shift
|
|
./$cmd $*
|
|
echo "$requestedcmd exited with code $?"
|
|
cd -
|
|
}
|
|
|
|
run_remote_python() {
|
|
echo
|
|
echo '---------------------------------------------------------------------------'
|
|
echo Running python script "'$*'" from https://$mgr/confluent-public/os/$profile/scripts/
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
python3 $*
|
|
echo "'$*' exited with code $?"
|
|
cd -
|
|
}
|