Horje
vim delete every other line Code Example
vim delete from delimeter to end of line for all lines
# Basic syntax:
:%norm $T<delimiter>D
# Where:
#	- % indicates that the command should be applied on all lines
#	- norm indicates that the command is to be run in normal mode
#	- $T - not sure - probably something like "to end of line"
#	- D indicates delete
vim select lines and delete
# Press v and you are in visual mode
# Select the lines
# Press x
vim delete every other line
:1d|g/^/+d  # Every other odd line
vim delete every other line
:g/^/+d  # Every other even line




Shell

Related
install Ubuntu on WSL Code Example install Ubuntu on WSL Code Example
get client secret azure app registration powershell Code Example get client secret azure app registration powershell Code Example
ignore .DS_store when uploading to s3 using shell Code Example ignore .DS_store when uploading to s3 using shell Code Example
powershell check if childitem is directory Code Example powershell check if childitem is directory Code Example
obs studio fedora Code Example obs studio fedora Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11