l3nz / cli-matic

Compact, hands-free [sub]command line parsing library for Clojure.
Eclipse Public License 2.0
361 stars 29 forks source link

Add shutdown hook #46

Closed l3nz closed 5 years ago

l3nz commented 5 years ago

If the command run is long-running, it would be nice to add a shutdown hook by calling :on-shutdown:

(.addShutdownHook
            (Runtime/getRuntime)
            (Thread.
              (fn []
                (log "Bye!")
                )))