You can put it anywhere, but it is not recommended to put it in /usr/bin. If you need to allow access to it by others than yourself, then put it in /usr/local/bin, otherwise, create a bin directory in your home and put it there. That's what I do with personal tools that are not intended for general use. IE: Code: mkdir ~/bin
cp exctbl ~/bin
You can put ~/bin in your PATH so it finds your personal tools and applications. In your .bash_profile, add this: Code: export PATH=${PATH}:~/bin
BTW, you only need to create ~/bin once.
__________________
Sometimes, real fast is almost as good as real time.
|