themactep.com

A home of miscellaneous projects by Paul Philippov.

Notes

How to run make a script to run in background

if [ "x$1" != "x--" ]; then
    $0 -- 1> "out.log" 2> "error.log" &
    exit 0
fi