.net - Making sure to always run the dnvm and dnu commands by adding to .bash_profile -


i following along installing asp.net 5 , dnx post , here i'm stuck:

tip: add following .bash_profile , restart terminal. first line ensure can run dnvm , dnu commands. second line works around known bug in mono may see ioexception filesystemwatcher has reached maximum number of files watch when running application.

source dnvm.sh export mono_managed_watcher=disabled 

my simple question is:

  • how add .bash_profile?

.bash_profile file sits @ ~/. should able open text editor , add commands.

alternatively can in terminal.

echo 'source dnvm.sh' >> ~/.bash_profile echo 'export mono_managed_watcher=disabled' >> ~/.bash_profile 

whats happening here appending piece of text 'source dnvm.sh' specific file.

the echo command prints text, , >> shift operator appends text file .bash_profile located @ ~/.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -