vim:read_and_write_remote_files
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
vim:read_and_write_remote_files [2020/04/14 00:39] – created peter | vim:read_and_write_remote_files [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 14: | Line 14: | ||
<code bash> | <code bash> | ||
- | $ ssh peter@192.168.1.69 cat test.txt | + | ssh peter@192.168.1.69 cat test.txt |
+ | </ | ||
- | Please note that if you want to mention the absolute path for the directory on the remote host, use double slashes | + | Please note that if you want to mention the absolute path for the directory on the remote host, use double slashes |
<code bash> | <code bash> | ||
- | $ vim scp:// | + | vim scp:// |
+ | </ | ||
+ | |||
+ | ---- | ||
Just in case you have already changed the default SSH port for security purposes, you should explicitly mention the SSH port no like below. | Just in case you have already changed the default SSH port for security purposes, you should explicitly mention the SSH port no like below. | ||
<code bash> | <code bash> | ||
- | $ vim scp:// | + | vim scp:// |
</ | </ | ||
Line 33: | Line 37: | ||
<code bash> | <code bash> | ||
vim ftp:// | vim ftp:// | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Read and Write remote files within Vim session ===== | ||
+ | |||
+ | If you are already inside a Vim session, you can then read and write remote files using Nread (NetRead) and Nwrite (NetWrite) commands. | ||
+ | |||
+ | Open Vim editor in your local system using the following command: | ||
+ | |||
+ | <code bash> | ||
+ | vim | ||
+ | </ | ||
+ | |||
+ | You’re now inside the Vim session. | ||
+ | |||
+ | <code bash> | ||
+ | :e scp:// | ||
+ | </ | ||
+ | |||
+ | Alternatively, | ||
+ | |||
+ | <code bash> | ||
+ | :Nread scp:// | ||
+ | </ | ||
+ | |||
+ | Or, | ||
+ | |||
+ | <code bash> | ||
+ | :Nread " | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | For more details, type the following command inside the Vim session: | ||
+ | |||
+ | <code bash> | ||
+ | :Nread ? | ||
+ | </ | ||
+ | |||
+ | After reading the file, type :q to exit. | ||
+ | |||
+ | Similarly, to write the remote file, run: | ||
+ | |||
+ | <code bash> | ||
+ | :e scp:// | ||
+ | </ | ||
+ | |||
+ | Press “i” to enter into insert mode and start writing /modifying it. | ||
+ | |||
+ | You can also use :w command to create and write files. But this command will create new empty file only. | ||
+ | |||
+ | <code bash> | ||
+ | :w scp:// | ||
+ | </ | ||
+ | |||
+ | After writing, press ESC and type :wq to save and exit. | ||
+ | |||
+ | Alternatively, | ||
+ | |||
+ | <code bash> | ||
+ | :Nwrite scp:// | ||
+ | </ | ||
+ | |||
+ | To know more details about Nwrite, type the following in the Vim session: | ||
+ | |||
+ | <code bash> | ||
+ | :Nwrite ? | ||
</ | </ | ||
vim/read_and_write_remote_files.1586824770.txt.gz · Last modified: 2020/07/15 09:30 (external edit)