> uploadtext_

v1.0.0 - Secure text sharing node

Vim search and replace

Owner: guest_user Created: 2026-05-04 15:17:15 Size: 0.22 KB Expires: Never
[ RAW ] [ NEW ]
tty1
1 2 3 4 5 6 7 8 9
Replace All:

:%s/foo/bar/g
Find each occurrence of 'foo' (in all lines), and replace it with 'bar'.

For specific lines:

:6,10s/foo/bar/g
Change each 'foo' to 'bar' for all lines from line 6 to line 10 inclusive.