The easiest way I know of to "increment" a letter is to use the fact that perl will do that for you:
Execute Shell Script: perl -e '$a = $ENV{KMVAR_Count}; print ++$a'
This will increment 1➤2, a➤b, A➤B, z➤aa, etc.
The easiest way I know of to "increment" a letter is to use the fact that perl will do that for you:
Execute Shell Script: perl -e '$a = $ENV{KMVAR_Count}; print ++$a'
This will increment 1➤2, a➤b, A➤B, z➤aa, etc.