Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drylikov/wait_for
A small utility that waits for a file to exist, optionally with some permissions.
https://github.com/drylikov/wait_for
Last synced: 8 days ago
JSON representation
A small utility that waits for a file to exist, optionally with some permissions.
- Host: GitHub
- URL: https://github.com/drylikov/wait_for
- Owner: drylikov
- License: mit
- Created: 2024-06-06T11:11:21.000Z (5 months ago)
- Default Branch: drylikov
- Last Pushed: 2024-09-07T00:52:51.000Z (2 months ago)
- Last Synced: 2024-09-07T03:28:13.713Z (2 months ago)
- Language: C
- Size: 12.7 KB
- Stars: 3
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wait for
A small utility that waits for a file to exist, optionally with some permissions.
## Building
Either via Docker:
```console
$ git submodule update --init --recursive
$ docker build -t zeit/wait-for .
```or using CMake (requires Linux)
```console
$ git submodule update --init --recursive
$ mkdir build && cd build
$ cmake .. -DCMAKE_BUILD_TYPE=Release
$ cmake --build .
```## Usage
```
Wait_for [--help] [-rwx] [-dfps] [-U ]Wait for a file to exist and optionally have one or modes
-h, --help Shows this help message
-x, --execute Wait for the path to become executable
-r, --read Wait for the path to become readable
-w, --write Wait for the path to become writable
-p, --pipe Wait for the path to be a pipe (FIFO)
-s, --socket Wait for the path to be a socket
-f, --file Wait for the path to be a regular file
-d, --directory Wait for the path to be a directory
-U, --username The username to run access checks for (NOT the user ID)If multiple modes are specified, wait-for waits for all of them to become available.
If multiple file types are specified, wait-for waits for the file to be any one of the specified types.
```