Say you have 50k zip files to parallel-unzip w/spaces in...
Say you have 50k zip files to parallel-unzip w/spaces in their names. Perhaps you've spent time trying to do Unix stuff using find/gfind/-exec/xargs/\;/{}/parallel/:::: and so forth. You can instead say:
fdfind -e zip -x unzip -d {//} {}
That's it!
github.com/...
➛fdfind -e zip -x unzip -d {//} {}
That's it!
github.com/...