I try to work with a project in vagrant. I have made the command vagrant ssh, and connected to VM. Now I need to edit .bashrc file to set path to
vagrant ssh
.bashrc
.bashrc is not meant to be executed but sourced. Try this instead:
. ~/.bashrc
Cheers!