#!/bin/bash

## This is part of workshop: Advanced HPC and Data Management topics
## Autor: robert.barthel@kit.edu

## Purpose: Loop for line by line reading of file

declare -i i=1
while read -r line ; do
   echo "line ${i}: ${line}"
   let i+=1
done < 01_input_file
