diff options
Diffstat (limited to 'fmt/kebab')
-rwxr-xr-x | fmt/kebab | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fmt/kebab b/fmt/kebab new file mode 100755 index 0000000..c9bbc66 --- /dev/null +++ b/fmt/kebab @@ -0,0 +1,4 @@ +#!/bin/sh +# kebab: convert-a-string-into-kebab-case + +echo "$1" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z0-9-]//g' |