8 lines
71 B
Bash

#!/bin/bash
while read X; do
echo "You entered: $X"
done
echo "End"