How to change case of multiple directories recursively #1338
-
I am using ccase. The following command works for renaming a single directory.
If I want to recursively rename all directories to kebab case then what would be the command. I tried:
and
giving error: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I don't think you can do a bulk mv like that. You'll probably need to use -x instead. And you'll need to invoke a shell in order to call a nested command. Something like:
|
Beta Was this translation helpful? Give feedback.
-
I think something like
and
Is there anything similar |
Beta Was this translation helpful? Give feedback.
I don't think you can do a bulk mv like that. You'll probably need to use -x instead. And you'll need to invoke a shell in order to call a nested command.
Something like: