Can I run snippets on a server within Blink? #1549
-
Can I store commands to run them later? Can I run a shell script on a remote server? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can easily run snippets on remote servers using the Blink' shell capabilities. ssh 'bash -s' < test.sh To create a snippet, make sure to use our Code integration. Because this is a Shell script, it can be as complex as you need it, and not limited to a single line. Ie. create a test.sh file:
If you store your snippets inside the iCloud folder, they will be automatically synchronized between your devices. You can also call snippets from Shortcuts by leveraging URL callbacks. At the moment, we do not offer any specialized UI to run snippets, but it is in our roadmap. |
Beta Was this translation helpful? Give feedback.
You can easily run snippets on remote servers using the Blink' shell capabilities.
ssh 'bash -s' < test.sh
To create a snippet, make sure to use our Code integration. Because this is a Shell script, it can be as complex as you need it, and not limited to a single line. Ie. create a test.sh file:
If you store your snippets inside the iCloud folder, they will be automatically synchronized between your devices.
You can also call snippets from Shortcuts by leveraging URL callbacks.
At the moment, we do not offer any specialized UI …