this post was submitted on 17 Aug 2021
0 points (NaN% liked)

GNU+Linux Humor

4871 readers
2 users here now

Memes, jokes and general humor about GNU+Linux

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] adrianmalacoda@lemmy.ml 1 points 3 years ago

As others have said it's so the user can place their own executables on the PATH. Ubuntu supports this too, if you look in ~/.profile you will find this snippet

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

I believe the current convention is to use ~/.local/bin for this purpose, and ~/bin is an older convention.