Files
runta cp
Section titled “runta cp”Copy files or directories between the local machine and a runtime.
runta cp <source> <destination>Remote paths use <runtime_name>:<path>.
echo "hello from local" > local-file.txtrunta cp local-file.txt demo:/tmp/local-file.txt
runta exec demo -- sh -lc 'mkdir -p /tmp/results && echo "hello from runtime" > /tmp/results/result.txt'runta cp demo:/tmp/results ./results