kevincox / rustymedia

A Transcoding DLNA Server
Other
64 stars 8 forks source link

Path is not expanded #10

Closed rsteube closed 4 years ago

rsteube commented 4 years ago

When using ~ as in the example --local 'My Videos'=~/Videos no content is listed. Absolute path works.

kevincox commented 4 years ago

Path expansion is the job of the shell, not the program. I would check if your shell has options to expand paths after an = or if you can manually expand the path. You can also use $HOME/Videos.

I'm closing because this is working as intended.

rsteube commented 4 years ago

My bad, yes it works in bash. For zsh i need to enable magicequalsubst :https://unix.stackexchange.com/a/373532