2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-12 02:38:20 +00:00

22 lines
595 B
Plaintext
Raw Normal View History

run_remote() {
requestedcmd="'$*'"
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() {
2020-08-20 16:20:02 -04:00
echo -n 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 $*
2020-08-20 16:20:02 -04:00
echo "'$*' exited with code $?"
cd -
}