you want to call the script without having to type out its path?
then it should be stored in your PATH!
if "$HOME/bin" is already in it, that's where your script should go. symlink or copy, doesn't matter (in principle).
if not, do this as a normal user:
and add this line to whatever file your login shell parses first:
Code:
PATH="$HOME/bin${PATH+:}${PATH}"
(it's ~/.bash_profile on my system, but this varies!)