shenwei356 / rush

A cross-platform command-line tool for executing jobs in parallel
https://github.com/shenwei356/rush
MIT License
846 stars 63 forks source link

escaping not working #35

Closed ranjit-git closed 3 years ago

ranjit-git commented 3 years ago

it does not escape using -Q flag echo "http://localhost/?id=asdd=sdd&sdf=dff'&sdf=ff#df\`ds$gfg&sdf$sf"|rush -j 4 "{}" -Q "'#" --dry-run --verbose output=> http://localhost/?id=asdd=sdd&sdf=dff'&sdf=ff#df`ds&sdf -->why its not escaping ' and #

shenwei356 commented 3 years ago

forgot -q?

ranjit-git commented 3 years ago

I see -q is default but I want to escape more special character thus I want to use -Q

ranjit-git commented 3 years ago

ok got it , i need to use both -Q -q flags . thanks