1 2 3 4
#!/bin/sh # kebab: convert-a-string-into-kebab-case echo "$1" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z0-9-]//g'