|
|
|
|
|
by bstpierre
4616 days ago
|
|
Yes, I have written some of those too. Just make sure the script is in your PATH. I drop them in ~/bin/ -- which reminds me of another thing you should have in your ~/.bash_profile, if it isn't already in the template provided by your system: if [ -d $HOME/bin ]
then
PATH=$PATH:$HOME/bin
fi
|
|