Files
Linux/Task_1/input.sh

10 lines
179 B
Bash
Executable File

#!/bin/bash
read -p "Enter your Firstname: " name
echo "Hello, $name. Welcome!"
read -p "First number: " n1
read -p "Second number: " n2
echo "Number1: $n1"
echo "Number2: $n2"