Loading...
 

UNIX VI TIPS

VI tips

To insert a quote at the beginning of each line

:%s/^/“/


To insert a quote and comma at the end of each line

:%s/$/“,/

Find non ASCII Characters

grep --color='auto' -P  "[\x80-\xFF]"