Skip to content

Instantly share code, notes, and snippets.

@yu81
Created March 29, 2016 05:49
Show Gist options
  • Save yu81/e0bb25f153fe64bc8a33 to your computer and use it in GitHub Desktop.
Save yu81/e0bb25f153fe64bc8a33 to your computer and use it in GitHub Desktop.
Convert Abbreviations of month in English to numbers.
sed -e "s/Jan/1/g" -e "s/Feb/2/g" -e "s/Mar/3/g" -e "s/Apr/4/g" -e "s/May/5/g" -e "s/Jun/6/g" -e "s/Jul/7/g" -e "s/Aug/8/g" -e "s/Sep/9/g" -e "s/Oct/10/g" -e "s/Nov/11/g" -e "s/Dec/12/g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment