9 lines
145 B
Bash
Executable file
9 lines
145 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo -n "Give me a user:"
|
|
read user
|
|
|
|
echo -n "Give me a password:"
|
|
read password
|
|
|
|
echo "Hello ${user} your password is ${password}"
|