• + 0 comments
    while read text
    do
      char2=$(echo $text | cut -c2)
      char7=$(echo $text | cut -c7)
      result="$char2$char7"
      echo "$result"
    done