https://github.com/vroncevic/unix_domain_socket_client
:penguin: Unix Domain Socket Client
https://github.com/vroncevic/unix_domain_socket_client
ansi-c bash c linux unix-domain-socket utils
Last synced: 3 months ago
JSON representation
:penguin: Unix Domain Socket Client
- Host: GitHub
- URL: https://github.com/vroncevic/unix_domain_socket_client
- Owner: vroncevic
- License: gpl-3.0
- Created: 2017-05-10T20:00:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T22:02:50.000Z (almost 6 years ago)
- Last Synced: 2025-10-27T08:45:29.687Z (8 months ago)
- Topics: ansi-c, bash, c, linux, unix-domain-socket, utils
- Language: Shell
- Homepage:
- Size: 737 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unix Domain Socket Client (Bash command)
The README is used to introduce the tool and provide instructions on
how to install the tool, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be provided before the tool is installed.
### INSTALLATION
To install this tool type the following:
```
$cat INSTALL
```
and follow instructions.
### DEPENDENCIES
This tool requires these other modules and libraries:
```
Standard ANSI libraries
```
### USAGE
```
#!/bin/bash
uds -s /tmp/notify.sck -m "Send notification"
STATUS=$?
if [[ $STATUS -eq 0 ]]; then
# notify user
else
# notify user
fi
exit 0
```
### COPYRIGHT AND LICENCE
Copyright (C) 2019 by https://vroncevic.github.io/unix_domain_socket_client
This tool is free software; you can redistribute it and/or modify it.
:sparkles: