Well, I have been using a mac for a long time now. I had problems with it, so I switched the OS to Ubuntu and liked the experience, except for the trouble I had updating my iPod touch, so now my Mac is running OS X Tiger again. Right Now, I'm having troubles on my Mac. In the past, I was able to download Mac the Ripper 2.6.6 and rip DVDs to my hard drive and send them through handbrake. Now, I cannot even download that program at all, which means I need another DVD ripper. From my time using Ubuntu 8.04 on a Mac, I have gotten used to using a command-line program called "vobcopy" it did pretty much what Mac the Ripper did and it was easy to use, so I decided to install it on my Mac OS. I got the dependency and the program installed without problems, but I don't want to type out the entire path to the program. I would like to run run just like it did on Ubuntu, which means I need to edit the PATH environment variables, which is where my question comes in. How do I add vobcopy as a command recognized by Mac OS X? I edited the file "~/.profile" and the file "~/.bashrc" and even the file "etc/paths" and restarted the terminal and each time I was not able to get it to work. Maybe I was doing it the wrong the way, but I have no idea about that. I entered
and
and
and
and
What do I need to do to be able type something like
instead of needing to type something like
each time I open a terminal window?
Update: Never mind, I figured out that I need to type this
into ~/.profile
Code:
. /usr/local/bin/
and
Code:
. /usr/local/bin/vobcopy
and
Code:
PATH="/usr/local/bin/vobcopy"
and
Code:
PATH="/usr/local/bin/"
and
Code:
PATH="/usr/local/bin/vobcopy"
export PATH
What do I need to do to be able type something like
Code:
vobcopy -V
Code:
/usr/local/bin/vobcopy -V
Update: Never mind, I figured out that I need to type this
Code:
PATH=$PATH:/usr/local/bin/
export PATH
into ~/.profile