[Solved] execution problem

Hi

I want to make a script . In this script i want to use input file and this input file consist of three numbers in a line

for example input file is as below:

 	 	 	 	 	  919876543210  09876543234567876  98764534245678  aircelmms","aircelweb","aircelwap"

096574235625 14124144144455555 14555555555555
aircelmms","aircelwebpost","aircelwappost"..............

....................and so on

in each line first number is MSISDN second number is IMSI and third one is IMEI and last one is APN

and i want to use these three numbers as input for following command which will execute automatically :

 CREATE:DCRSUB:MSISDN,input file number :IMSI,input file number:IMEI,input file number:APN_LIST,"aircelmms","aircelweb","aircelwap";

Taking first line as input .. If input file varies, provide us some more samples ..

$ nawk '{print "CREATE:DCRSUB:MSISDN,"$1":IMSI,"$2":IMEI,"$3":APN_LIST,\""$4";"}' infile

thnks a lot for ur support it works