sshfs instead of ftp
Got an ssh account on a machine? Don’t waste time retrieving a file, editing it, and uploading it manually.
sshfs user@target:/directory /mnt/point
You can then edit the file locally and, when saved, will do so across the ssh pipe.
2 Comments »
RSS feed for comments on this post. TrackBack URI
My favorite way of editing remote files is with vim;
vim scp://user@target//path/to/some/file.txt
I am going to start using that where sshfs is not available, thanks.