Skip to content
Advertisement

Read lines from a file and tokenize each line to extract specific word in shell script

I wrote a shell script to read all lines from a file, tokenized each line to extract particular word. First line is read correct, but from the second line the expected word is not reading correctly. Looking forward for your suggestions.

JavaScript

Contents of route.sh are

JavaScript

Actual output

JavaScript

Expected output

JavaScript

Extra Note:

My objective is to (network concept)

  1. Read all lines from a file (each line depicts a route)
  2. From each line extract the netmask (e.g.: 255.255.255.255)
  3. Tokenize “255.255.255.255” with ‘.’, so we get 4 numbers, calculate the number of 1s in each token, add them up. That would be prefix length for the network IP.

Advertisement

Answer

The problem is that you set IFS='.', so for the second read on the array line will be incorrectly set.

One way to fix it is by saving the original IFS and then resetting it when appropriate. For example,

JavaScript

You must be careful when changing IFS, otherwise weird things will happen.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement