Shell Promt Wejście użytkownika
#!/bin/bash
read -p "Enter Your Name: " username
echo "Welcome $username!"
Blue Boar
#!/bin/bash
read -p "Enter Your Name: " username
echo "Welcome $username!"
#!/bin/bash
# Demonstrate how read actually works
echo What cars do you like?
read car1 car2 car3
echo Your first car was: $car1
echo Your second car was: $car2
echo Your third car was: $car3
# fullname="USER INPUT"
read -p "Enter fullname: " fullname
# user="USER INPUT"
read -p "Enter user: " user