[kanchilug] Re: [ILUGC] 1D1C - colrm

  • From: Mohan R <mohan43u@xxxxxxxxx>
  • To: ilugc@xxxxxxxxxxxxx
  • Date: Sat, 28 May 2022 20:24:45 +0530

Hi,

On Sat, May 28, 2022 at 6:01 AM Dhanasekar <tkdhanasekar@xxxxxxxxx> wrote:


colrm - remove columns from a file
$ cat number.txt
123456789

$ colrm 4 6 < number.txt
123789
it will remove 4 5 and 6 column in the line

$ colrm 1 3 < number.txt
456789
it will remove 1 2 and 3 column in the line

Learnt this command today. Thanks for introducing.

Thanks,

Mohan R
Kanchilug Blog : http://kanchilug.wordpress.com

To subscribe/unsubscribe kanchilug mailing list : 
http://kanchilug.wordpress.com/join-mailing-list/

Other related posts:

  • » [kanchilug] Re: [ILUGC] 1D1C - colrm - Mohan R