mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-25 02:52:07 +00:00
17 lines
327 B
Plaintext
17 lines
327 B
Plaintext
run_remote() {
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
chmod +x $1
|
|
cmd=$1
|
|
shift
|
|
./$cmd $*
|
|
cd -
|
|
}
|
|
|
|
run_remote_python() {
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
/usr/libexec/platform-python $*
|
|
cd -
|
|
}
|