Fundamentals of Data Engineering Part 2
Introduction to Shell scripting
Debugging Issues in code
Write shell script which receives a number as input parameter and loops from 1 till the given number and display all the odd numbers in that range.
Example: If input number to the shell script is 8, then the shell script should loop from 1 to 8 and display all the odd numbers in that range like: 1,3,5,7