#!/bin/bash # quick example of interactive input using read # # by: Sharon Tuttle # last modified: 2022-09-12 echo -n "please type something followed by enter: " read user_input # (script will wait for something to be entered) echo "you entered: [$user_input]"