Horje
vim comment out mutiple lines Code Example
vim comment out mutiple lines
# To comment
Press ESC
hit V
Move the cursor until desired lines to comment
hit :
'<,'>s/^/#/g

# To uncomment
Do the same, but command is:
'<,'>s/^#//g

# '<,'> indicates the range you've selected with VISUAL MODE.




Shell

Related
bash create empty array Code Example bash create empty array Code Example
du -sh sort size Code Example du -sh sort size Code Example
check number of threads in a process linux Code Example check number of threads in a process linux Code Example
gnutls_handshake() failed: an unexpected tls packet was received. Code Example gnutls_handshake() failed: an unexpected tls packet was received. Code Example
bash initialize array Code Example bash initialize array Code Example

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