I am painfully new to command line stuff.
I'm trying to install Affymetrix Power Tools on a Mac OSX (Mavericks). I have the files downloaded and unzipped, but I don't understand how to actually do the "Add the bin sub folder to your PATH" part. Right now, the entire APT folder is just sitting on my desktop, so the location of the bin folder is "/Users/MyName/Desktop/apt-1.15.2-x86_64-apple-lion/bin".
All that adding the binary to your $PATH environment variable will do is make it so you can launch the program by typing just the name of the binary, instead of the entire path. For example, if a binary named samtools is in a folder that is in your $PATH environment variable, you can launch it by just typing
samtools
on the command line, instead of having to type the whole path like this:
So yes, by pasting that folder path in the /etc/paths file, you should be able to launch APT just by typing the name of the program on the command line.
Let me know if that doesn't make sense or you have trouble.