Remove the First Capital Letter from Each Element

  • + 0 comments
    array=(`cat`)
    
    new_array=( ${array[@]/[A-Z]/"."})
    
    echo ${new_array[@]}