KSH Shell

I want to run a Unix command 100 times using a for loop from 1 to 100. Can you tell me how to take a block of numbers in a loop under KSH or BASH shell?

{ 0 comments }

How do I read a file line by line using KSH shell scripting under UNIX like operating systems?

{ 10 comments }

If var is defined AND NOT EMPTY, use var, otherwise set a default variable under Bash. For e.g. my script needs a parameter for output variable. It can be text or html. I set it as follows in my script

output=$1 # either text or html

However, sometime user forget to pass the parameter to my shell script and my enter logic fails. So how do I set default value to text, if no parameter passed?

{ 6 comments }

Can you provide me a while loop control flow statement shell script syntax and example that allows code to be executed repeatedly based on a given boolean condition?

{ 17 comments }

How do I use ksh for loop to iterate thought array values under UNIX / Linux / BSD operating systems?

{ 4 comments }