One solution is to simply create a shell script (populate_check.ksh) that calls scripts in turn:
r=$1 populate.ksh $r && check.ksh $r
Or for several parameters:
for r; do populate.ksh $r && check.ksh $r done
For tasks that are more transient, you can also parameterize the command to make it easier to edit in history:
$ r=9241; populate.ksh $r && check.ksh $r
Or do a few at once:
$ for r in 9241 9242; do populate.ksh $r && check.ksh $r; done
source share