Skip to content
Advertisement

Remove column matching 2 patterns with AWK

Multiple lists of Books with ISBN,TITLE,OBSERVATION and other with OBSERVATION,TITLE,ISBN, I want remove column OBSERVATION, print TITLE as 1st column and ISBN as 2nd as follow.

Input:

  • 123654 Cosmology Updated
  • 35647 Medecine Revised
  • 987456 Juriprudence Revised
  • Updated Rhetorics 123456
  • Revised epistomolgy 654321

Ouput desired:

  • Cosmolgy 123654
  • Medecine 35647
  • Rhetorics 123456
  • epistomolgy 654321

I tried this code found in SE and manipulated for hours without result

JavaScript

Advertisement

Answer

EDIT: Since OP confirmed in comments that Input_file is NOT comma separated then by seeing OP’s attempt, could you please try following then.

JavaScript

Explanation: Adding explanation for above code.

JavaScript


Following solutions considered that OP’s Input_file is csv and comma separated.

Looks like your Input_file is comma separated and you want to print 1st field of space separated 2nd column and 1st field of line then. If this is the case could you please try following.

JavaScript

Explanation: Adding detailed explanation for above code.

JavaScript


In case your complete Input_file is comma separated then you need not only print fields like following.

JavaScript

Explanation: Adding explanation for above code.

JavaScript
Advertisement