jpillora / media-sort

Automatically organise your movies and tv series
MIT License
119 stars 21 forks source link

Name Generation #21

Open killkong1211 opened 4 years ago

killkong1211 commented 4 years ago

For easier traversals of directories on my CLI I like to have file/directory names with '.' in place of whitespace (i.e. the.simpsons).

Is there a way to alter the 'name' variable such that whitespace is replaced by another character?

jpillora commented 4 years ago

Not possible yet, I think the best way to do this would be to add replace https://golang.org/pkg/text/template/ Function into media-sort.

Then the user provides a custom --tv/movie-template which does a replace " " "." - would be fairly tricky to get right though, text/template doesn't the easiest DSL...