# hcron

> Making crontab human readable

Latest version **0.1.2** (published 2015-06-26) · 0 weekly downloads

## Install

```sh
npm install hcron
pnpm add hcron
yarn add hcron
bun add hcron
```

Provides the command `hcron`.

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2015-06-26 |
| First published | 2015-06-26 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 8 |
| Author | Andres Galindo |
| Maintainers | mrferos |

## Links

- npm: https://www.npmjs.com/package/hcron
- Repository: git@github.com:mrferos/hcron
- Issues: https://github.com/mrferos/hcron/issues
- npm.io page: https://npm.io/package/hcron

## Dependencies (2)

- [yargs](https://npm.io/package/yargs.md) 3.13.0
- [prettycron](https://npm.io/package/prettycron.md) 0.10.*

## Recent versions

- 0.1.2 (latest) — 2015-06-26
- 0.1.1 — 2015-06-26
- 0.1.0 — 2015-06-26

## README

# HCron

Made a little utiltiy that will take a cronline as an argument or will attempt to read your crontab and translate it into something human readable. Most (read: all) of the heavy lifting is actually done by [prettycron](https://github.com/azza-bazoo/prettycron). 

## Usage:

```bash
hcron "0 11 * * * php awesomescript.php"
```

Will output
```
11:00 every day the process "php awesomescript.php" will run
```

Just executing `hcron` will read the output of "crontab -l | grep -v \#" (the grep -v part is to remove commented out cron jobs) and output all cronjobs in a human readable format.

## Installation:

### Through NPM:
npm install -g hcron

### Through git

Clone the repo to your home directory. Navigate to the directory & run:

```bash
sudo npm install
ln -s ~/hcron/bin/hcron /usr/local/bin/hcron
```

---
_Source: https://npm.io/package/hcron · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
