Asis Patra

@asispatra

Bengaluru, India

Build column Command on Linux

by on September 18, 2022 at 7:15 pm

You might have bsd version column on your system, which might be an older version. You can build column using the following steps.

Build column

wget https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.38/util-linux-2.38.1.tar.gz
tar -xvf util-linux-2.38.1.tar.gz
cd util-linux-2.38.1
./configure
make column
cp .libs/column ~/bin/
column --version

Category: Linux

Tags: , ,

 

Print csv in tabular form: csv2table

by on September 18, 2022 at 6:48 pm

There is a command named column which already helps you to print csv in tabular form. Here, we have used the same column command in csv2table script which automatically take care of the header and prints in tabular form with border. Example Note: Please make sure you are using latest column version. You can build […]  Read More »

Category: Linux

Useful Linux Commands

by on September 22, 2022 at 3:12 pm

Find who is logged on and What they are doing Kill tty Connections Find Common Elements Between Two Lists comm is great, but indeed it needs to work with sorted lists. Alternative with sort: reflector  Read More »

Category: Linux