Home » Misc » Create a bin folder …

Create a bin folder at your own home folder in Linux

This is a trivial task.

mkdir ~/bin

Append ~/.bashrc or ~/.bash_profile with

export PATH=$PATH:$HOME/bin

Attention: there are NO spaces beside the '='.