Skip to content

Instantly share code, notes, and snippets.

@xperienced
Last active August 29, 2015 14:16
Show Gist options
  • Save xperienced/650ea6657062d5310fcf to your computer and use it in GitHub Desktop.
Save xperienced/650ea6657062d5310fcf to your computer and use it in GitHub Desktop.
SED script to convert between snake_case and camelCase
#!/bin/bash
sed -e 's/_\([a-z]\)/\U\1/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment