diff --git a/take_data.sh b/take_data.sh index 36d595f..e791dce 100644 --- a/take_data.sh +++ b/take_data.sh @@ -1,2 +1,5 @@ #!/bin/bash -echo "Hello World" \ No newline at end of file +while read line +do + echo "Record is : $line" +done < <(tail -n +2 Customers.csv) \ No newline at end of file