delete all lines N long, suggested by @ixc@bsd.network

This commit is contained in:
mischa 2019-04-16 09:45:50 +02:00
parent 8f839d09b1
commit f069fab63c
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,14 @@ Helpful documents:
:%s/^.\{0,5\}//
#### Delete all lines N (10) characters long
:g/^.\{10\}$/d
#### Delete all lines _except_ N (10) characters long
:g!/^.\{10\}$/d
#### Search and replace PATHs, using different delimiter
:%s#/usr/local/log#/var/log#g