#!/bin/bash echo SCRIPT: $0 echo "Enter Customer Order Ref (eg 100018)" read P_CUST_ORDER_REF echo "Enter DU Id (eg 100018)" read P_DU_ID P_ORDER_ID=${P_CUST_ORDER_REF}${P_DU_ID}
Inside the for loop, how can I increment P_CUST_ORDER_REF by 1 every time it loops
so it READs 10000028 uses it on first loop 2nd 10000029 3rd 10000030 4th 10000031
ahmet source share