[SOLVED] SSH remote command: Pipe remote output to local machine?
Linux - ServerThis forum is for the discussion of Linux Software used in a server related context.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
SSH remote command: Pipe remote output to local machine?
Hi all,
I'm running a command such as this:
Code:
ssh user@remote.example.com "python script.py"
When the script finishes, it's output is returned to my local server. What I would like to get working is having the script output continiously directed to my local server, so that I don't have to wait for the script to finish to get the output.
All the output generated by a script is shown locally the moment the script prints/echo's it.
You need to alter your python script.
Thanks, I think you're right. I tried this command:
Code:
ssh user@remote.example.com "date; sleep 5; date"
which output data at the moment the commands echo it. But with the python script, it seems to delay the output until the script has completed. In my script I have plain "print" statements, so I'm puzzled as to what may be causing the delay. Anyone got any ideas?
But with the python script, it seems to delay the output until the script has completed. In my script I have plain "print" statements, so I'm puzzled as to what may be causing the delay. Anyone got any ideas?
You do need to know that I never programmed in python, but if it is anything like perl then it could be an output buffering issue.
Can you put up the [SOLVED] tag.
- above the first post -> Please Mark this thread as solved if you feel a solution has been provided.
- -or- -
- first post -> Thread Tools -> Mark this thread as solved
Can you put up the [SOLVED] tag.
- above the first post -> Please Mark this thread as solved if you feel a solution has been provided.
- -or- -
- first post -> Thread Tools -> Mark this thread as solved
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.