'Tr' Command #2, is a HackerRank problem from Text Processing subdomain. In this post we will see how we can solve this challenge in Sh

Problem Description

In this challenge, we practice using the tr command because it is a useful translation tool in Linux. In a given fragment of text, delete all the lowercase characters .

Input Format

A block of ASCII text.

Output Format

Delete all the lowercase characters in the given block of text.

Sample Input ....

You can find the full details of the problem 'Tr' Command #2 at HackerRank

Solution: Please check the tr-2.sh snippet for the solution.

This solution originally posted at: Github by @srgnk