Convertir hexadecimal a decimal usando awk o sed [duplicado]

Esta pregunta ya tiene una respuesta aquí:

onversión de hexadecimal a decimal en awk o sed 7 respuestas

Tengo datos como este, separados por comas:

18:22:05,OtherOMoperation,BatuAmpar,BatuAmparMG1,2fe3,c7b1
18:22:05,OtherOMoperation,BatuAmpar,BatuAmparMG2,2fe3,c7b2
18:22:05,OtherOMoperation,BatuAmpar,BatuAmparMG3,2fe3,c7b3
03:25:55,Othercauses,N_Pancamukti,N_PancamuktiMG1,2f50,c775
03:25:55,Othercauses,N_Pancamukti,N_PancamuktiMG2,2f50,c776

Necesito convertir las últimas dos columnas en decimal de la siguiente manera:

18:22:05,OtherOMoperation,BatuAmpar,BatuAmparMG1,12259,51121
18:22:05,OtherOMoperation,BatuAmpar,BatuAmparMG2,12259,51122
18:22:05,OtherOMoperation,BatuAmpar,BatuAmparMG3,12259,51123
03:25:55,Othercauses,N_Pancamukti,N_PancamuktiMG1,12112,51061
03:25:55,Othercauses,N_Pancamukti,N_PancamuktiMG2,12112,51062

Ya he probado este:
cat | nawk -F, '{printf "% d \ n", $ 1}'

No obtengo nada más que ceros como salida:
0 0 0 0 0 0 0 0 0

Respuestas a la pregunta(1)

Su respuesta a la pregunta