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

7 lines
107 B
Bash
Raw Normal View History

2023-03-15 13:23:44 +02:00
while true
do
echo "Input website:"
read website; echo "Searching.."
sleep 1; curl http://$website
done