Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daschr/waitfor
command line tool for waiting until a host is reachable
https://github.com/daschr/waitfor
Last synced: 8 days ago
JSON representation
command line tool for waiting until a host is reachable
- Host: GitHub
- URL: https://github.com/daschr/waitfor
- Owner: daschr
- License: gpl-3.0
- Created: 2019-01-31T09:50:35.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-13T12:58:46.000Z (almost 5 years ago)
- Last Synced: 2023-08-24T09:24:05.721Z (over 1 year ago)
- Language: C
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# waitfor - command line tool for waiting until a host is reachable
For example:
---* waitfor [host] [port] (waits until host is reachable at port)
* waitfor -t30 [host] [port] (waits until host is reachable at port, stops after 30 seconds if still not reachable)
* waitfor [host] (pings until host is reachable)
* waitfor -t30 [host] (pings until host is reachable, stops after 30 seconds if still not reachable)Exit codes:
---* 0 = host is reachable
* 1 = host is not reachable
* 2 = waitfor received SIGTERM/SIGINT
* 3 = other errorPlease take a look in the Makefile for compilation instructions.