Cron → Natural Language
Translate cron expressions (* * * * *) into Portuguese natural language. Ex: '0 0 * * 1' = 'Every Monday at midnight'.
minuto · hora · dia-do-mês · mês · dia-da-semana (0=domingo)
—
Reading the five cron fields
Someone left 30 4 * * 6 in the crontab and then left the company. Before you touch that server, you need to know whether it fires on Saturday or on Sunday. Paste the five fields here and the expression turns into a sentence you can read at a glance. Worth knowing up front: the sentence comes out in Portuguese, because the weekday and month names in this tool are only defined in that language.
The day-of-week field uses 0 for Sunday and 6 for Saturday, which is where people coming from another convention slip. There is a second trap almost no cron translator mentions: when you fill in both day-of-month and day-of-week, Linux cron runs on either match, not on both at once. So 0 0 13 * 5 fires on every 13th and also on every Friday. The generated sentence lists both pieces separated by a comma, which can read like a single condition.
It handles the asterisk, ranges like 1-5, lists like 1,3,5 and steps like */15. It does not handle names (MON and JAN come out exactly as typed), shortcuts like @daily, a step inside a range (1-5/2 shows up raw) or the sixth seconds field used by Quartz and Spring. It does no range checking either: 99 99 * * * happily becomes 99:99. And it translates rather than simulates, so it never lists upcoming runs. Everything happens in your browser.
Frequently asked questions
Does it show the next run times?
Can I paste @daily or @reboot?
Why does the output come out in Portuguese?
Related Tools
Natural Language → Cron
Build a cron expression from Portuguese selectors (every X minutes, every workday at H, Monday at H:M). Rule-based, no AI.
WhatsApp Link Generator
Generate wa.me or api.whatsapp.com links with pre-filled message (URL-encoded). Ready to use in buttons.
Restaurant Bill Itemized
Each person picks the items they consumed; the system sums values, applies proportional service fee and shows each person's share.
IPv4 CIDR Range Expander
Expand IPv4 CIDR blocks (e.g. 192.168.0.0/24) into first IP, last IP, broadcast, mask and total usable hosts. Useful for network and firewall planning. Everything in your browser.
HTML Toggle Switch Builder
Builds an iOS-style toggle switch with label using <input type=checkbox> and inline CSS.
Flip Image
Flip an image horizontally, vertically or in both directions. Instant result in the browser — no data sent to servers.