command using input code example
Example 1: input bash
# fullname="USER INPUT"
read -p "Enter fullname: " fullname
# user="USER INPUT"
read -p "Enter user: " user
Example 2: input command in python shell
x = input("Input Your Name")
#lets say I input Bob
print(x)
#It should output Bob