1
0
Fork 0
This repository has been archived on 2025-01-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
devops-with-docker/part1/Exercise_07/web-server.sh

6 lines
107 B
Bash
Executable file

while true
do
echo "Input website:"
read website; echo "Searching.."
sleep 1; curl http://$website
done