Skip to content

Instantly share code, notes, and snippets.

@trauber
Created December 10, 2022 16:40
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 trauber/6bc56aac52366a70e8104db5d1f3f161 to your computer and use it in GitHub Desktop.
Save trauber/6bc56aac52366a70e8104db5d1f3f161 to your computer and use it in GitHub Desktop.
Sluggify One Liner
```
echo "Abcd ; 200-2" | awk '{gsub(/[^[:alnum:]]/,"-");gsub(/-+/,"-");print}'| tr [:upper:] [:lower:]
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment