Write Remote Text
remote_ssh_write_textWrite UTF-8 text content to a file on a remote SSH host. Specify the remote path and content, optionally setting permissions and creating parent directories.
Instructions
Write UTF-8 text to a file on the configured SSH host through SSH stdin.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | No | SSH hostname or IP address. Overrides REMOTE_SSH_HOST. | |
| mode | No | Optional chmod mode, for example 644 or 0600. | |
| path | Yes | Remote Linux path. Use absolute paths or ~/path. | |
| content | Yes | UTF-8 text content to write. | |
| timeoutMs | No | Timeout in milliseconds. | |
| createDirs | No | Create parent directories first. Defaults to true. |