Archive for October 18th, 2007

18Oct

On numeric for loops in Korn shell scripting

The time hounoured syntax for a for loop in a UNIX script is what you see below and that is what works with the default shell in Sun’s Solaris UNIX operating system, ksh88. for i in 1 2 3 4 5 6 7 8 9 10 do         if [[ -d dir$i ]]     [...]

Private