Skip to content

Instantly share code, notes, and snippets.

@n4bb12
Created June 29, 2022 12:29
Show Gist options
  • Save n4bb12/c45dd3f2c0a89251603e131948340c62 to your computer and use it in GitHub Desktop.
Save n4bb12/c45dd3f2c0a89251603e131948340c62 to your computer and use it in GitHub Desktop.
slugify () {
echo "$@" | iconv -c -t ascii//TRANSLIT | sed -E 's/[~^]+//g' | sed -E 's/[^a-zA-Z0-9]+/-/g' | sed -E '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