Your Name 068ef34709
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 20s
.
2025-05-10 13:32:09 +12:00

21 lines
309 B
Bash
Executable File

#!/bin/bash
# JSON=$(cat <<'EOF'
# {"command":"nano","args":["-w","./hello.txt"]}
# EOF
# )
JSON=$(cat <<'EOF'
{"command":"nano","args":["-w","./hello.txt"],"options":{"interactive":true}}
EOF
)
BASE64=$(echo -n "$JSON" | base64 -w0)
echo "JSON: $JSON"
echo "Running command..."
build/runner "$BASE64"