Skip to content

Instantly share code, notes, and snippets.

@asv
Last active August 29, 2015 14:16
Show Gist options
  • Save asv/a286b8aefb972af8f62c to your computer and use it in GitHub Desktop.
Save asv/a286b8aefb972af8f62c to your computer and use it in GitHub Desktop.
Bash titleize / camelize (bash 4)
titleize() {
local title=$@
local title_arr=( $title )
echo "${title_arr[*]^}"
}
camelize() {
local title=`titleize $@`
echo "${title// /}"
}
$ echo `camelize create user table`
CreateUserTable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment