https://github.com/flimberger/sigreset
A simple utility to reset the SIGINT and SIGTERM default handlers before executing its arguments.
https://github.com/flimberger/sigreset
android-studio intellij shell utility
Last synced: 10 months ago
JSON representation
A simple utility to reset the SIGINT and SIGTERM default handlers before executing its arguments.
- Host: GitHub
- URL: https://github.com/flimberger/sigreset
- Owner: flimberger
- License: bsd-2-clause
- Created: 2018-09-16T09:06:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-16T09:07:49.000Z (over 7 years ago)
- Last Synced: 2025-02-05T14:42:58.194Z (12 months ago)
- Topics: android-studio, intellij, shell, utility
- Language: C
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
# sigreset
A simple utility to reset the SIGINT and SIGTERM default handlers before
executing its arguments.
## Usage
```
usage: sigreset CMD [ARGS...]
```
## Building
Currently,
the only tested platform is Ubuntu 18.10,
but it should work anywhere where a BSD make and some BSD library functions are
available.
On Ubuntu:
```
# apt install bmake
# bmake
```
## Motivation
Work around the inability of JetBrains to handle signals properly:
https://youtrack.jetbrains.com/issue/IDEA-157989
It is essentially the same as the utility from Tom Lee
(https://github.com/thomaslee/signal-reset),
but I wanted to have fun writing such a utility myself.
Also, the other program is lacking a proper license.