Answers for "bash input"

7

input bash

# fullname="USER INPUT"
read -p "Enter fullname: " fullname
# user="USER INPUT"
read -p "Enter user: " user
Posted by: Guest on December-01-2020
0

bash input

#!/bin/bash
# Ask the user for their name
echo Hello, who am I talking to?
read varname
echo It\'s nice to meet you $varname
Posted by: Guest on August-19-2021
1

bash read input

echo "Synchronize repositories? Y/N"
read ANSWER
Posted by: Guest on July-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language