diff options
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc-fn | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zsh/.zshrc-fn b/zsh/.zshrc-fn index 526b435..0d7e707 100644 --- a/zsh/.zshrc-fn +++ b/zsh/.zshrc-fn @@ -24,3 +24,8 @@ sv() { pvd() { mpv *$1* } + +# Change a string into its kebab style, e.g. all-lower-case-with-dashes. +intokebab() { + echo "$1" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z-]//g' +} |