We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6953c3 commit 4179344Copy full SHA for 4179344
ssh-helpers/conductor.sh
@@ -239,6 +239,13 @@ conductor_cmd_run() {
239
run_cmd=1
240
}
241
242
+conductor_cmd_pythonversion() {
243
+ log conductor_cmd_pythonversion
244
+ printf "\e]135;:"
245
+ command -v python3 >/dev/null 2>&1 && python3 -V
246
+ printf "\e\\"
247
+}
248
+
249
conductor_cmd_runpython() {
250
log conductor_cmd_runpython
251
run_python=1
@@ -446,7 +453,8 @@ iterate() {
446
453
done
447
454
448
455
log read line "$line"
449
- handle_command "$line"
456
+ log decodes to: $(printf "%s" "$line" | base64_decode)
457
+ handle_command $(printf "%s" "$line" | base64_decode)
450
458
451
459
452
460
drain_stdin() {
0 commit comments