Skip to content

Instantly share code, notes, and snippets.

@tortuetorche
Forked from oneohthree/quick-slugify.sh
Created November 9, 2016 10:24
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 tortuetorche/2af058d7fcc48866db7d98aa10098ae4 to your computer and use it in GitHub Desktop.
Save tortuetorche/2af058d7fcc48866db7d98aa10098ae4 to your computer and use it in GitHub Desktop.
Quick bash slugify
echo "$STRING" | iconv -t ascii//TRANSLIT | sed -r s/[^a-zA-Z0-9]+/-/g | sed -r s/^-+\|-+$//g | tr A-Z a-z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment