-
Notifications
You must be signed in to change notification settings - Fork 8
Home
闲耘™ edited this page Sep 28, 2016
·
11 revisions
via sed:
sed 's/\([0-9]\{1,2\}\)\/\([0-9]\{1,2\}\)\/\([0-9]\{4\}\)/\3\/\2\/\1/g;s/\([0-9]\{1,2\}\)\/\([0-9]\{4\}\)/\2\/\1/g;s/\([0-9]\)\-\~/\1\-/g;s/\([0-9]\)\-/\1\~/g;s/ \~\([0-9]\)/ \1/g' life.md > newlife.md
via vim:
:e life.md
:%s/\(\d\{1,2\}\)\/\(\d\{1,2\}\)\/\(\d\{4\}\)/\3\/\2\/\1/g
:%s/\(\d\{1,2\}\)\/\(\d\{4\}\)/\2\/\1/g
:%s/\([0-9]\)\-\~/\1\-/g
:%s/\([0-9]\)\-/\1\~/g
:%s/ \~\([0-9]\)/ \1/g
:wq newlife.md