Remove the First Capital Letter from Each Element

  • + 0 comments

    awk ' BEGIN { ORS=" " } { gsub(/^[A-Z]/, "."); print } ' this was working