awk -F ":" '{
    for(i = NF; i >=1; i--) {
        printf("%s", $i)
        if (i != 1) {
            printf(":")
        }
    }
    print ""
}'