mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-23 18:11:15 +00:00
910490cc74
This will help provide flexibility in invoking remote scripts without hardcoding arguments into the scripts
16 lines
302 B
Plaintext
16 lines
302 B
Plaintext
run_remote() {
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
chmod +x $1
|
|
cmd=$(shift)
|
|
./$cmd $*
|
|
cd -
|
|
}
|
|
|
|
run_remote_python() {
|
|
cd $(mktemp -d)
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/$1 > $1
|
|
python3 $*
|
|
cd -
|
|
}
|