I'm developing a tool that generates a png file. I'm doing a lot of the work over ssh, which is getting to be a pain. Every time I make a change to the code and want to test it, I use scp to bring the image over to my computer so I can look at it.

Is there a better way (on Ubuntu)?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

try FuseSSH FS:

sshfs hostname: mountpoint

you then just point your image viewer to the created image file.

on ubuntu you install it via:

sudo apt-get install sshfs

link|improve this answer
feedback

You might have some level of success with this method which creates a tunnel and lets you look at it from a browser essentially.

link|improve this answer
feedback

You can write a simple shell script to run the remote command, copy the file over, then open it in your tool of choice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.