Where should I put my script in my home directory so that I can access it from any directory?
I've tried:
o@s:~/$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
But it seems there is no /home/user/ path. The thing is that I'd like only my user to have access to it so putting it in another directory than my home folder is not an option. Should I add something like /home/user/scripts/ to my PATH variable? If so, what's the recommended way to do it... Should I put it in my ~/.bashrc?
