Sunday 27 November 2016

linux - How can I export permanently the PATH setting when I restart my machine?

I use this command in Linux but it doesn't work when I restart my machine



export PATH="$HOME/.linuxbrew/bin:$PATH"
export MANPATH="$HOME/.linuxbrew/share/man:$MANPATH"
export INFOPATH="$HOME/.linuxbrew/share/info:$INFOPATH"


How can I make these settings permanent (across reboots)?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...