I have the following command, which I am trying to append to my ~/.bash_profile:
echo 'alias N="cd $(pwd) && source ./bin/activate && cd new"" I want it to return echo:
alias N="cd /Users/david/Desktop/django2 && source ./bin/activate && cd new" What would be the correct way to escape the pwd or quotes?