HackerRank Cut #4 problem solution YASH PAL, 31 July 2024 In this HackerRank Cut #4 problem solution, we need to display the first four characters from each line of text.Input FormatA text file with lines of ASCII text only.Constraints 1 <= N <= 100(N is the number of lines of text in the input file)Output FormatThe output should contain N lines. Each line should contain just the first four characters of the corresponding input line.Sample InputHelloWorldhow are youSample OutputHellWorlhow Problem solution.while read line do echo $line | cut -c 1-4 done Second solution.cut -c1,2,3,4 Third solution.cut -c1-4 coding problems solutions linux shell