Skip to content

Instantly share code, notes, and snippets.

@joerx
Created August 17, 2020 12:01
Show Gist options
  • Save joerx/f211cbb64251a5f9eca5878ad8b38743 to your computer and use it in GitHub Desktop.
Save joerx/f211cbb64251a5f9eca5878ad8b38743 to your computer and use it in GitHub Desktop.
Shorten AWS region name using regex
echo "eu-central-1" | sed -E s'/([a-z]{2})-([a-z]{1})[a-z]+-([0-9]{1})/|\1\2\3|/' # 'euc1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment