Skip to content

Instantly share code, notes, and snippets.

@tonytonyjan
Created April 23, 2017 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonytonyjan/af03e5607c2407b50f82d096bb69992a to your computer and use it in GitHub Desktop.
Save tonytonyjan/af03e5607c2407b50f82d096bb69992a to your computer and use it in GitHub Desktop.
Convert any string to to lowercase and dashes fromat
#!/bin/sh
# $ dasherize Hello, world! I am tonytonyjan.
printf "$*" \
| tr '[:upper:]' '[:lower:]' \
| tr -C '[:alnum:]' ' ' \
| tr -s ' ' '-' \
| sed -e 's/^-*//' -e 's/-*$//' \
| tr -d '\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment