I'm trying to do the simplest of shell aliases like I always use to do.
Here's my .bashrc (and same happened with ZSH and .zshrc) for instance :
alias ll=“ls -al”
alias edit_http=“open -e /etc/httpd/conf/httpd.conf”
and here's my $PATH variable :
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
When I open a new terminal window I get this :
-bash: alias: -al”: not found
-bash: alias: -e: not found
-bash: alias: /etc/httpd/conf/httpd.conf”: not found
Here's my ls -al result of .bashrc :
-rwxr-xr-x@ 1 ed staff 78 Mar 17 03:55 .bashrc
Strangely I can type this into Terminal and it works :
alias ll="ls -al"
But not from within the .bashrc file.
Any suggestions ? I've checked so many forum entries and nothing worked so far.