.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 rundnvm
,dnu
commands. second line works around known bug in mono may see ioexceptionfilesystemwatcher 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
Post a Comment