1

I installed GNU parallel with (wget pi.dk/3 -qO - || curl pi.dk/3/) | sh, but I believe it is preferable to install it with Homebrew instead, because that makes updating easier.

How do I remove everything the script created? I'm using OS X.

octosquidopus
  • 3,517
  • 8
  • 35
  • 53

1 Answers1

2

Try this:

(wget pi.dk/3 -qO - ||  curl pi.dk/3/) | bash
cd parallel-20*/
make uninstall
Ole Tange
  • 31,768
  • 5
  • 86
  • 104