mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 10:45:09 +03:00
8 lines
71 B
Bash
Executable File
8 lines
71 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while read X; do
|
|
echo "You entered: $X"
|
|
done
|
|
|
|
echo "End"
|