#!/bin/bash

kjv=kjv.txt

while IFS=: read book chapter verse text
do
    printf "%s %s:%s %s\n" "$book" "$chapter" "$verse"
done < "$kjv"