‘Tr’ Command #2 – HackerRank Solution

Hello coders, In this post, you will learn how to solve ‘Tr’ Command #2 – HackerRank Solution. This problem is a part of the Linux Shell series.

‘Tr’ Command #2 – HackerRank Solution
‘Tr’ Command #2 – HackerRank Solution

‘Tr’ Command #2 – HackerRank Solution

Problem

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 a – z.

Input Format

A block of ASCII text.

Output Format

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

Sample Input

Hello
World
how are you

Sample Output

H
W

‘Tr’ Command #2 – HackerRank Solution

#In a given fragment of text, delete all the lowercase characters a - z.
tr -d "a-z"

Note: This problem (‘Tr’ Command #2) is generated by HackerRank but the solution is provided by chase2learn. This tutorial is only for Learning and Educational purpose.

Sharing Is Caring