Incremental letters & numbers w/ reset

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.

4 Likes