How to view html file in remote unix server?

前端 未结 2 2008
长发绾君心
长发绾君心 2021-02-01 05:30

I currently have an html file on a remote unix server that I ssh to. I have been using SFTP to constantly transfer it to my local machine to view it after my edits, but I am tir

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-01 06:06

    You can mount the remote directory with sshfs which gives you easy access to all the files. E.g.:

    sshfs user@server:/directoryToMount /localDirectory
    

提交回复
热议问题