Monday, May 31, 2021

Bash Scripting

 HACKERANK SOLUTIONS, LINUX SCRIPTING 

Write a bash script that prints the string "HELLO".

Input Format

There is no input file required for this problem.

Output Format

HELLO

Sample Input

-

Sample Output

HELLO


SOLUTION:

ECHO is a command in Linux which is utilized to print text or string. It actually works like the "printf" command in C

echo "HELLO"