Translate

Thursday, June 13, 2013

Tips and Tricks for OpenBSD - Using GNU ls

.: How to use the GNU ls on OpenBSD :.

If you're a Linux lover, you certainly miss GNU ls when using BSD systems. Well, this post will help you to install and configure GNU ls on OpenBSD.

Just follow those really easy steps:

pkg_add -i -v gnuls
alias ls='gls --color=auto'
If you want to make it permanent, just add this inside your favorite shell configuration file:

# for BASH
echo "alias ls=gls --color=auto" >> .bashrc

There you go! :)

No comments:

Post a Comment