HackerRank Tr Command #1 problem solution YASH PAL, 31 July 2024 In this HackerRank ‘Tr’ Command #1 problem solution In this challenge, we practice using the tr command because it is a useful translation tool in Linux.In a given fragment of text, replace all parentheses () with box brackets [].Input FormatA block of ASCII text. Output FormatOutput the text with all parentheses () replaced with box brackets [].Problem solution.#!/bin/bash cat $1 | tr "(" "[" | tr ")" "]"Second solution.tr '(' '[' | tr ')' ']' Third solution.tr '()' '[]' coding problems solutions linux shell