You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
faster space trim. Safe args. Capturing Stderr
nohup not required
double fork makes PID=1 the parent and thus automatically removed it from the current session group - and by this will not receive a SIGHUP on exit (which is what we want. Nohup is redundant in this case).
Update README.md
Update README.md
The inner `{..}` writes to STDERR and exits with error code 123. The STDERR from the inner `{..}` is redirected to STDOUT with `2>&1`. The normal STDOUT is redirected to the newly created File Descriptor '3' with `1>&33>&-`. The outter `{..}` redirects File Descriptor '3' back to STDOUT with `3>&1`.
2237
+
2238
+
The variable `err`then contains the STDERR of the inner `{..}`.
0 commit comments