As intimidating as the black screen may be, there are ways to make your life easier and better when using it.  Below are a couple from my personal archives that I use daily.


One of the things that I find myself doing regularly is looking at text files that have been generated from another service to confirm validity or simply grab a tidbit of information from them.  In those cases, I generally use the CAT command.  It simply takes the content of the given file and spits it into the command prompt.  It’s a pretty bland command, no formatting, no pretty colors, just simple text.  Most IDE’s on the other hand give us both.  And for that there is: BAT:

Download BAT Here!


PrettyPing

If you have ever worked on the network layer of setting up a server or dealing with network related issues (is my network down?), then you have likely used “ping”.  It’s a very bland, text only affair that tells you just a little information.

Now in the days of a pretty, multi-colored, command line session, PrettyPing steps in to make things that much nicer!

Download PrettyPing Here!


FZF - Fuzzy Find

Searching through lists of things in the command line has never been particularly easy.  You could usually find a way to sort through what you needed, but adding filters or searching on that data was never great.  Most specifically, looking your console history ctrl+r or history was not a trivial matter.

Enter FZF:  You can add it to your directory lookups, file finds or console history either through an alias or by piping data to it (i.e. history | fzf).

Download FZF Here!


diff-so-fancy

Git Diff’s tend to be very anemic and bland.  While it is nice for them to function properly, if you can’t understand what they are showing or have a hard time reading it, they quickly become useless.  Make them great again with Diff-so-Fancy.

Download diff-so-fancy here!


gTop

gtop - graphical process watcher

It is sometimes useful for computer users to see what your computer is doing and how the processor and memory are being consumed.  While there are some OS based built-in tools, most Linux boxes don’t have this.  That however doesn’t mean that it’s Linux only, as I have it running on my mac as well.

Download gTop here!


fd – find files

Finding files from the command line has always been difficult.  From figuring out which command to use to how to format the parameters, it’s always been very tough to find what you were looking for.  FD fixes all of that.

Download FD here!


ncdu – disk usage

ncdu - disk usage visualizer

Current computers suffer from the plague that is tiny hard-drives.  Modern SSD’s, which growing larger in size and smaller in cost are still smaller than the spinning platters of a few years back.  One of my favorite mac apps for helping fix this is Daisy Disk, a very attractive disk space visualizer.  The closest thing that we have on Linux is ncdu.

Download NCDU here!


Just for Fun

cowsay / ponysay

cowsay MOOOOOOOOOOOOOOO!

Ever want to make the cow say things?

Ubuntu / Linux Install:

apt install cowsay
cowsay "Your message here"

MacOS / Brew Install:

brew install cowsay
cowsay "Your message here"

Figlet

figlet - terminal text prettifier

Some neat text effects for messages in the command line.  Works great for MOTD’s on servers.

Ubuntu / Linux Install:

apt install figlet
figlet "Your message here"

MacOS / Brew Install:

brew install figlet
figlet "Your message here"

lolcat

rainbow moo
rainbow cool text

And just because command-lines aren’t the same until there’s color, there’s lolcat!

Ubuntu / Linux Install:

apt install lolcat
lolcat "Your message here"
figlet "My Cool Message" | lolcat

MacOS / Brew Install:

brew install lolcat
lolcat "Your message here"
cowsay "My Cool Message" | lolcat