mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-04-25 22:29:25 -05:00
7 lines
105 B
Bash
Executable File
7 lines
105 B
Bash
Executable File
#!/bin/sh
|
|
if wget --spider -S "127.0.0.1:8080" 2>&1 | grep -w "302" ; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|