Skip to content

Instantly share code, notes, and snippets.

View betafcc's full-sized avatar
🎯
Focusing

Brendon betafcc

🎯
Focusing
View GitHub Profile
@oneohthree
oneohthree / quick-slugify.sh
Last active April 10, 2025 08:25
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