Skip to content

Instantly share code, notes, and snippets.

@kesonno
Forked from oneohthree/quick-slugify.sh
Created July 2, 2017 20:12
Show Gist options
  • Save kesonno/9caca34dbecea1e51dd7ce19c55d6b9c to your computer and use it in GitHub Desktop.
Save kesonno/9caca34dbecea1e51dd7ce19c55d6b9c 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