# quiet **Repository Path**: mirrors_pmezard/quiet ## Basic Information - **Project Name**: quiet - **Description**: Simple command line runner for crontab actions - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # What is it? crontab sends emails when a job prints anything on standard output. I find that annoying at best and much prefer to receive emails about failing jobs, and possibly with their output tailed. That is what `quiet` is about: ``` quiet sh -c 'echo something; false' ``` executes `sh -c 'echo something; false'` and because the command fails, prints `echo` output and forward the exit status code. It would have printed nothing if `false` were to be removed or replaced by `true`. If you know a simple standard way to achieve this, please tell me!