Jeevitha Kannan K S
Jeevitha Kannan K S
> Ctrl C does not exit linutil when in search mode. Test it. Users would want to use CTRL C to exit the application rather than aborting the search in...
Linutil should not be ran as root. Will add restriction to prevent running as root.
You can specify a new user in the docker file and run it with `docker run --user myuser myimage`. If you're using an image from the docker hub most of...
```sh elevated_execution() { if [ -z "$ESCALATION_TOOL" ]; then "$@" else "$ESCALATION_TOOL" "$@" fi } ``` Need to replace every `ESCALATION_TOOL` in scripts with `elevated_execution` function Is this simple function...
Yeah was thinking of same idea