Your first Bash script

Report a typo

Write a script with \n that will display phrases in different lines. For example, for 'Hi!' and 'Hey!' the output should be the following:

Hi!
Hey!

Sample Input 1:

Sample Output 1:

Hi!
Hey!
Write a program in Shell
#!/usr/bin/env bash
___

Create a free account to access the full topic