#!/bin/bash
#simple example of how to read user input with bash
echo "Please enter a word"
read word
echo Please enter your first and last name
read Last First
echo "$First $Last, You entered the word $word"
#!/bin/bash
#simple example of how to read user input with bash
echo "Please enter a word"
read word
echo Please enter your first and last name
read Last First
echo "$First $Last, You entered the word $word"