Files
Linux/Task 1/input.sh
2025-05-06 16:09:38 +02:00

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"