Computer Science, asked by LoveyLadhar, 2 months ago

please solve these linux related questions​

Attachments:

Answers

Answered by dvirus7775dy
0

Answer:

#!/bin/bash

# Usage: Hello World Bash Shell Script Using Variables

# Author: Amit

# -------------------------------------------------

# Define bash shell variable called var

# Avoid spaces around the assignment operator (=)

var="Hello World"

# print it

echo "$var"

# Another way of printing it

printf "%s\n" "$var"

Similar questions