Using awk or sed need the output in the new file

Please find the input file as given below:

2012/02/29 11:00:00CRITICAL~For customer 00000476 no daily files were found in the 010137933 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05006802 no daily files were found in the 010115166 account directory.
2012/02/29 11:00:00CRITICAL~For customer 05011563 no daily files were found in the 010140474 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05020228 no daily files were found in the 010138125 account directory.
2012/02/29 11:00:00CRITICAL~For customer 05020386 no daily files were found in the 010139358 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05021824 no daily files were found in the 010139517 account directory.
2012/02/29 11:00:00CRITICAL~For customer 05021842 no daily files were found in the 010138341 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05021900 no daily files were found in the 010172283 account directory.
2012/02/29 11:00:00CRITICAL~For customer 05021919 no daily files were found in the 010139104 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05022009 no daily files were found in the 010140344 account directory.
2012/02/29 11:00:00CRITICAL~For customer 05022069 no daily files were found in the 010138079 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05022200 no daily files were found in the 010142552 account directory.
2012/02/29 11:00:00CRITICAL~For customer 05022340 no daily files were found in the 010146237 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 05022434 no daily files were found in the 010146543 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-11KRBM no daily files were found in the 010140084 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-135C5 no daily files were found in the 010146694 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-1YMM0B no daily files were found in the 010143465 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-2U4KZF no daily files were found in the 010140158 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-4IL79 no daily files were found in the 010140476 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-4IL79 no daily files were found in the 010142047 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-4IL79 no daily files were found in the 010146576 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-76T0K1 no daily files were found in the 010145539 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-7EM9AA no daily files were found in the 010146683 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-BWM-187 no daily files were found in the 010143241 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-BWM-187 no daily files were found in the 010143252 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-BWM-244 no daily files were found in the 010143733 account directory.
2012/02/29 11:00:00CRITICAL~For customer 1-BWM-252 no daily files were found in the 010144781 account directory.
2012/02/29 11:00:00
CRITICAL~For customer 1-PC-975 no daily files were found in the 010146170 account directory.

           I need the below output in a different file using the above input file as a command line argument. The line count in the input file may vary it may increase or decrease. The fourth and twelfth columns from the input file are needed to produce the below output \(Ex: cp /ratingup/4th column/D* /cdr/12th Column/cdr &\). Please help me ASAP

cp /ratigup/010137933/D* /cdr/00000476/cdr &
cp /ratigup/010115166/D* /cdr/05006802/cdr &
cp /ratigup/010140474/D* /cdr/05011563/cdr &
cp /ratigup/010138125/D* /cdr/05020228/cdr &
cp /ratigup/010139358/D* /cdr/05020386/cdr &
cp /ratigup/010139517/D* /cdr/05021824/cdr &
cp /ratigup/010138341/D* /cdr/05021842/cdr &
cp /ratigup/010172283/D* /cdr/05021900/cdr &
cp /ratigup/010139104/D* /cdr/05021919/cdr &
cp /ratigup/010140344/D* /cdr/05022009/cdr &
cp /ratigup/010138079/D* /cdr/05022069/cdr &
cp /ratigup/010142552/D* /cdr/05022200/cdr &
cp /ratigup/010146237/D* /cdr/05022340/cdr &
cp /ratigup/010146543/D* /cdr/05022434/cdr &
cp /ratigup/010140084/D* /cdr/1-11KRBM/cdr &
cp /ratigup/010146694/D* /cdr/1-135C5/cdr &
cp /ratigup/010143465/D* /cdr/1-1YMM0B/cdr &
cp /ratigup/010140158/D* /cdr/1-2U4KZF/cdr &
cp /ratigup/010140476/D* /cdr/1-4IL79/cdr &
cp /ratigup/010142047/D* /cdr/1-4IL79/cdr &
cp /ratigup/010146576/D* /cdr/1-4IL79/cdr &
cp /ratigup/010145539/D* /cdr/1-76T0K1/cdr &
cp /ratigup/010146683/D* /cdr/1-7EM9AA/cdr &
cp /ratigup/010143241/D* /cdr/1-BWM-187/cdr &
cp /ratigup/010143252/D* /cdr/1-BWM-187/cdr &
cp /ratigup/010143733/D* /cdr/1-BWM-244/cdr &
cp /ratigup/010144781/D* /cdr/1-BWM-252/cdr &
cp /ratigup/010146170/D* /cdr/1-PC-975/cdr &

Thanks & Regards
Vikas Sagar