I am having an issue with my .bash_profile script.
If I simply have the line
source ~/sh/bashmarks.sh
the bashmarks.sh script runs as expected.
However, if I add an alias
source ~/sh/bashmarks.sh
alias gs='git status '
I get the message:
No such file or directory/bashmarks.sh
I should be able to add additional commands after I specify the script correct? What could be wrong here?