There's a closed pull request on the void-packages repository set null IFS in v* commands https://github.com/void-linux/void-packages/pull/42850 Description: without this, if `` arguments contain whitespace, word splitting causes the argument to be split unexpectedly. for example: `vcopy 'Spacey Folder/*.ttf' usr/share/TTF/` calls something equivalent to `cp "Spacey" "Folder/*.ttf" usr/share/TTF/` which of course fails. i couldn't find a way to escape word splitting from outside, aside from setting `IFS`. i'm not at all confident this won't break anything else in install.sh, but if it doesn't, i think it would be nice to preserve the expectation that `` arguments are just pure globs. #### Testing the changes - I tested the changes in this PR: **briefly**