Want to point out one other thing I’ve noticed:
echo “Hello name”
alias pd=“pwd”
alias hy=“history”
alias ll=“ls -la”
If I copy this solution (which is correct) into the Codecademy workspace, it will still fail, because the CC forums use a different quote character than the CC bash terminal. In the following screenshot, I typed the first line directly into the terminal, and copy/pasted the second from above.
This can be demonstrated by running source
with the following in the bash profile, which has all incorrect quotes:
Doing so yields:
After correcting all the quotes characters:
Checkpoint 2 passes, source
runs without error, and the aliases work correctly:
Hope this helps!