Re: [dev] sbase installed first impressions

From: Evan Gates <evan.gates_AT_gmail.com>
Date: Mon, 3 Oct 2016 15:19:54 -0700

> I have never had ls without color or column included (i'm spoiled) and
> google isn't being overly helpful at the moment. I found the cols
> command and ls | cols solved that so i can just create an alias, what
> about getting color? Is there a suckless solution?

An alias won't work here as you couldn't pass names to ls, and you
want to make sure you don't use cols when you use ls -l. As such I use
this (put in your .profile or similar):

s() { ls -F "$_AT_" | cols; }

I like the indicators from -F, and naming it s leaves ls alone for other uses.
Received on Tue Oct 04 2016 - 00:19:54 CEST

This archive was generated by hypermail 2.3.0 : Tue Oct 04 2016 - 00:24:12 CEST