Example folder title "The Rabbit's Foot"
Generated wget command
wget -rcnHp -R 'index.html*' 'http://localhost:9991/The%20Rabbit's%20Foot/?raw=true'
The issue is here is that the apostrophe after the word Rabbit acts as a closing quote. This makes the apostrophe after the word true a dangling starting quote.
Perhaps switch to double quotes for the outside of the command?
Example folder title "The Rabbit's Foot"
Generated wget command
wget -rcnHp -R 'index.html*' 'http://localhost:9991/The%20Rabbit's%20Foot/?raw=true'The issue is here is that the apostrophe after the word
Rabbitacts as a closing quote. This makes the apostrophe after the wordtruea dangling starting quote.Perhaps switch to double quotes for the outside of the command?