10 lines
157 B
Bash
Executable File
10 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "TEST HUGO"
|
|
url=http://localhost:6060
|
|
curl ${url} -I -o headers -s
|
|
if((cat headers | head -n 1 | cut '-d ' '-f2')=="200")
|
|
then
|
|
exit 0
|
|
fi
|