Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/motemen/undead

Runs a command and re-runs it on occasional, uncontrollable failure exits.
https://github.com/motemen/undead

Last synced: 3 days ago
JSON representation

Runs a command and re-runs it on occasional, uncontrollable failure exits.

Awesome Lists containing this project

README

        

undead
======

DESCRIPTION
-----------

`undead` runs a command and re-runs it on occasional, uncontrollable failure exits.

SYNOPSIS
--------

undead [-n ] command args...

Rename/symlink `undead` to undead_prog_, to invoke _prog_ implicitly. eg.

undeadperl mayfail.pl

CONFIGURATION
-------------

Place .undeadrc.pl in $PWD with content for example:

{
pattern => {
stderr => [
qr/^PhantomJS has crashed\./,
]
},
count => 20,
};