Skip to content

Instantly share code, notes, and snippets.

@goffinet
Forked from oneohthree/quick-slugify.sh
Created February 14, 2020 06:55
Show Gist options
  • Save goffinet/8945f5ce8c140d29fae093320416ccd9 to your computer and use it in GitHub Desktop.
Save goffinet/8945f5ce8c140d29fae093320416ccd9 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