Remove the First Capital Letter from Each Element

  • + 1 comment

    Pure bash: { a=($(cat)); echo ${a[@]/?/.}; } ;-)