====== BASH - Input - Get Input from User ====== #!/bin/bash echo -n "Enter Something:" read something echo "You Entered: $something"