{"id":65775,"date":"2022-10-14T11:35:54","date_gmt":"2022-10-14T11:35:54","guid":{"rendered":"\/tutorials\/?p=65775"},"modified":"2025-08-21T13:26:48","modified_gmt":"2025-08-21T13:26:48","slug":"crontab-syntax","status":"publish","type":"post","link":"\/tutorials\/crontab-syntax","title":{"rendered":"What is crontab syntax: understanding crontab on Linux + helpful examples"},"content":{"rendered":"<p>Automation is one of the key aspects of any system, whether a physical or virtual private server (VPS). If automation is set up correctly, it can save hundreds of precious hours for the user and make the overall workflow much more efficient. One of the key tools for scheduling tasks is <strong>cron<\/strong>.<\/p><p>In this tutorial, we will cover the crontab syntax, overview the differences between cron job, cron, and crontab, and provide some helpful cron jobs use cases for a Linux-based operating system.<\/p><p><strong>A Brief Overview of Crontab Syntax:<\/strong><\/p><figure tabindex=\"0\" class=\"wp-block-table\"><table><tbody><tr><td>Required Knowledge<\/td><td>Basic Linux command line skills, scheduling tasks<\/td><\/tr><tr><td>Privileges Required<\/td><td>User privileges, root for certain operations<\/td><\/tr><tr><td>Difficulty<\/td><td>Beginner&nbsp;<\/td><\/tr><tr><td>Main Goal<\/td><td>Understanding and using Crontab syntax, setting up cron jobs<\/td><\/tr><tr><td>OS Compatibility<\/td><td>Linux-based systems<\/td><\/tr><\/tbody><\/table><\/figure><p>\n\n\n\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-what-is-crontab-and-a-cron-job\">What Is Crontab and a Cron Job?<\/h2><p>Regarding cron jobs, three terms can be highlighted:<\/p><p><strong>Cron daemon (crond) or simply cron <\/strong>&ndash; an executable that allows users to perform tasks and run them automatically at a specific time.<\/p><p><strong>Cron job<\/strong> &ndash; any task a user schedules using cron is known as a <a href=\"\/tutorials\/cron-job\">cron job<\/a>.<\/p><p>\n\n\n<div class=\"protip\">\n                    <h2 class=\"featured-snippet title\">What Is Crontab Syntax?<\/h2>\n                    <p> <strong>Cron table<\/strong> or <strong>crontab<\/strong> is a file containing all schedules of the cron jobs a user wants to run regularly. Commands are written one per line and instructs the cron daemon to run a task at a specific time. <\/p>\n                <\/div>\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-crontab-format-and-values\">Crontab Format and Values<\/h2><p>For the cron daemon to understand instructions correctly, the correct crontab syntax must be used. Crontab syntax consists of five fields. Each one can be filled with any of the values as shown in the following table:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Field<\/strong>                                                                                                                            <\/td><td><strong>Possible values<\/strong><\/td><\/tr><tr><td>Minute<\/td><td>0-59<\/td><\/tr><tr><td>Hour<\/td><td>0-23<\/td><\/tr><tr><td>Day of month<\/td><td>1-31<\/td><\/tr><tr><td>Month<\/td><td>1-12<\/td><\/tr><tr><td>Day of week<\/td><td>0-6. 0 depicts Sunday. In some systems, a value of 7 represents Sunday instead<\/td><\/tr><tr><td>Command<\/td><td>Command to execute<\/td><\/tr><\/tbody><\/table><\/figure><p>Aside from possible crontab values, some special characters need to be memorized:<\/p><figure tabindex=\"0\" class=\"wp-block-table is-style-regular\"><table><tbody><tr><td><strong>Symbol<\/strong>                                                                                                                               <\/td><td><strong>Meaning<\/strong>                                                                                                                                                     <\/td><td><strong>Example<\/strong><\/td><\/tr><tr><td>* (asterisk)<\/td><td>Select all possible values in a field<\/td><td>Place * in the <strong>hour<\/strong> field to run the task every hour<\/td><\/tr><tr><td>, (comma)<\/td><td>A comma is used to separate multiple values<\/td><td>0,3,5 in the <strong>day of week<\/strong> field will make the task run on Sunday and Wednesday<\/td><\/tr><tr><td>&ndash; (hyphen)<\/td><td>Used to set a range of values<\/td><td>10-15 in the <strong>day of month<\/strong> field will run the task from the 10th to the 15th day of the month<\/td><\/tr><tr><td>\/ (separator)<\/td><td>A separator is used to divide values<\/td><td>*\/10 in the <strong>hour<\/strong> field will make the task run every 10 hours<\/td><\/tr><tr><td>L<\/td><td>Used in the <strong>day of month<\/strong> or <strong>day of week<\/strong> fields<\/td><td>1L in the <strong>day of week<\/strong> field will run the task on the last Monday of a given month<\/td><\/tr><tr><td>W<\/td><td>W is used to determine the closest weekday<\/td><td>0W in the <strong>day of month<\/strong> field will make the task run on the nearest Sunday of a given month<\/td><\/tr><tr><td># (hash)<\/td><td>Used to determine the <strong>day of week<\/strong><\/td><td>2#3 in the <strong>day of month<\/strong> field will make the task run on the third Tuesday of the month<\/td><\/tr><tr><td>? (question mark)<\/td><td>Used in the <strong>day of month<\/strong> and <strong>day of week<\/strong> fields<\/td><td>? in the <strong>day of month<\/strong> field will read as <strong>no specific value<\/strong><\/td><\/tr><\/tbody><\/table><\/figure><p>\n\n\n<div><p class=\"important\"><strong>Important!<\/strong> Note that all fields must be filled when creating a cron job. If you don&rsquo;t want to specify a field, fill it in with the <strong>* (asterisk)<\/strong> symbol.<\/p><\/div>\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-crontab-commands\">Crontab Commands<\/h2><p>Only a few cron commands are used in the command-line, thus making it easy to create, delete, and manage cron entries:<\/p><ul class=\"wp-block-list\">\n<li><strong>crontab -e<\/strong> &ndash; used to edit system crontabs. This command will create a new crontab if it has not been made yet.<\/li>\n\n\n\n<li><strong>crontab -l<\/strong> &ndash; used to view crontab entries (cron jobs) and display system crontab file contents.<\/li>\n\n\n\n<li><strong>crontab -r<\/strong> &ndash; will remove the current crontab file.<\/li>\n\n\n\n<li><strong>crontab -i<\/strong> &ndash; will show a prompt before removing a user&rsquo;s crontab. Highly recommended to use it together with the <strong>-r<\/strong> flag, making the flag <strong>-ri<\/strong>.<\/li>\n<\/ul><figure class=\"wp-block-image size-large\"><a class=\"hgr-tutorials-cta hgr-tutorials-cta-vps-hosting\" href=\"\/vps-hosting\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"300\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/public\" alt=\"\" class=\"wp-image-77934\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/VPS-hosting-banner.png\/w=768,fit=scale-down 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure><h2 class=\"wp-block-heading\" id=\"h-how-to-use-crontab-examples-of-crontab-syntax\">How to Use Crontab: Examples of Crontab Syntax<\/h2><p>First, use the crontab command to create your first crontab entry:<\/p><pre class=\"wp-block-preformatted\">crontab -e<\/pre><p>You will be asked to choose an editor. We recommend using <strong>nano<\/strong>, the first option in our example:<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showcasing-the-crontab-command-with-an-e-flag.-It-is-used-to-create-the-main-crontab-file-and-specify-the-preferred-editor.png\"><img decoding=\"async\" width=\"509\" height=\"178\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showcasing-the-crontab-command-with-an-e-flag.-It-is-used-to-create-the-main-crontab-file-and-specify-the-preferred-editor.png\/public\" alt=\"A command-line window showcasing the crontab command with an -e flag. It is used to create the main crontab file and specify the preferred editor\" class=\"wp-image-65776\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showcasing-the-crontab-command-with-an-e-flag.-It-is-used-to-create-the-main-crontab-file-and-specify-the-preferred-editor.png\/w=509,fit=scale-down 509w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showcasing-the-crontab-command-with-an-e-flag.-It-is-used-to-create-the-main-crontab-file-and-specify-the-preferred-editor.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showcasing-the-crontab-command-with-an-e-flag.-It-is-used-to-create-the-main-crontab-file-and-specify-the-preferred-editor.png\/w=150,fit=scale-down 150w\" sizes=\"(max-width: 509px) 100vw, 509px\" \/><\/a><\/figure><\/div><p>Afterward, you will be redirected to the crontab file. To add new entries, simply choose a new line and proceed with the cronjob.<\/p><p>\n\n\n<div><p class=\"important\"><strong>Important!<\/strong> Keep in mind that crontab uses the system&rsquo;s current time and date, which means that the time zone is shared with the root system. <\/p><\/div>\n\n\n\n<\/p><h3 class=\"wp-block-heading\" id=\"h-schedule-a-job-for-a-specific-time\">Schedule a Job for a Specific Time<\/h3><p>One of the simplest ways to test out cron is to schedule a job for a specific time. For example, the following cron job will execute our <strong>.sh script<\/strong> at the specified time, which is <strong>August 15th<\/strong>,<strong> <\/strong>at <strong>3:30pm<\/strong>.<\/p><pre class=\"wp-block-preformatted\">30 08 10 06 * cat \/helloworld.sh<\/pre><h3 class=\"wp-block-heading\" id=\"h-view-crontab-entries\">View Crontab Entries<\/h3><p>Since all the cron jobs are stored in a crontab file, you can view the ones that are already running. To do so, use the following command to display the contents of your crontab files:<\/p><pre class=\"wp-block-preformatted\">crontab -l<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showing-the-crontab-l-command.-All-new-lines-to-this-file-will-create-new-cron-jobs-that-will-be-used-to-execute-tasks-specified-by-the-user..png\"><img decoding=\"async\" width=\"623\" height=\"499\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showing-the-crontab-l-command.-All-new-lines-to-this-file-will-create-new-cron-jobs-that-will-be-used-to-execute-tasks-specified-by-the-user..png\" alt=\"A command-line window showing the crontab -l command. All new lines to this file will create new cron jobs that will be used to execute tasks specified by the user\" class=\"wp-image-65777\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showing-the-crontab-l-command.-All-new-lines-to-this-file-will-create-new-cron-jobs-that-will-be-used-to-execute-tasks-specified-by-the-user..png 623w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showing-the-crontab-l-command.-All-new-lines-to-this-file-will-create-new-cron-jobs-that-will-be-used-to-execute-tasks-specified-by-the-user.-300x240.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-showing-the-crontab-l-command.-All-new-lines-to-this-file-will-create-new-cron-jobs-that-will-be-used-to-execute-tasks-specified-by-the-user.-150x120.png 150w\" sizes=\"(max-width: 623px) 100vw, 623px\" \/><\/a><\/figure><\/div><h3 class=\"wp-block-heading\" id=\"h-edit-crontab-entries\">Edit Crontab Entries<\/h3><p>In order to modify already existing crontab entries, use this command:<\/p><pre class=\"wp-block-preformatted\">crontab -e<\/pre><h3 class=\"wp-block-heading\" id=\"h-schedule-a-job-for-every-minute\">Schedule a Job for Every Minute<\/h3><p>It is effortless to schedule tasks to run every minute. In the following example, we will instruct the <a href=\"\/tutorials\/linux-cat-command-tutorial-and-examples\/\"><strong>cat <\/strong>command<\/a> execution to run periodically:<\/p><pre class=\"wp-block-preformatted\">* * * * * cat \/home\/helloworld.sh<\/pre><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-with-the-nano-editor-open.-A-crontab-file-contents-can-be-seen-the-last-line-is-showcasing-a-cron-job-that-will-execute-our-script-every-minute..png\"><img decoding=\"async\" width=\"627\" height=\"503\" src=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-with-the-nano-editor-open.-A-crontab-file-contents-can-be-seen-the-last-line-is-showcasing-a-cron-job-that-will-execute-our-script-every-minute..png\" alt=\"A command-line window with the nano editor open. A crontab file contents can be seen, the last line is showcasing a cron job that will execute our script every minute\" class=\"wp-image-65778\" srcset=\"https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-with-the-nano-editor-open.-A-crontab-file-contents-can-be-seen-the-last-line-is-showcasing-a-cron-job-that-will-execute-our-script-every-minute..png 627w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-with-the-nano-editor-open.-A-crontab-file-contents-can-be-seen-the-last-line-is-showcasing-a-cron-job-that-will-execute-our-script-every-minute.-300x241.png 300w, https:\/\/www.hostinger.com\/tutorials\/wp-content\/uploads\/sites\/2\/2022\/10\/A-command-line-window-with-the-nano-editor-open.-A-crontab-file-contents-can-be-seen-the-last-line-is-showcasing-a-cron-job-that-will-execute-our-script-every-minute.-150x120.png 150w\" sizes=\"(max-width: 627px) 100vw, 627px\" \/><\/a><\/figure><\/div><h3 class=\"wp-block-heading\" id=\"h-schedule-a-background-job-every-day\">Schedule a Background Job Every Day<\/h3><p>To schedule a background job to run every day, you can use the<strong> @daily<\/strong> cron command:<\/p><pre class=\"wp-block-preformatted\">@daily cat \/home\/helloworld.sh<\/pre><p>Mind that the script will be executed at <strong>12am<\/strong> every day.<\/p><h3 class=\"wp-block-heading\" id=\"h-schedule-a-job-for-a-certain-range-of-time\">Schedule a Job for a Certain Range of Time<\/h3><p>It is possible to schedule a job for a specific range of time. For example, every weekday, including weekends, from <strong>8am<\/strong> to <strong>5pm<\/strong>. The end result would look like this:<\/p><pre class=\"wp-block-preformatted\">00 08-17 * * * cat \/home\/helloworld.sh<\/pre><p>Here&rsquo;s another example of the same cron, but just on the weekends:<\/p><pre class=\"wp-block-preformatted\">00 08-17 * * 6-0 cat \/home\/helloworld.sh<\/pre><h3 class=\"wp-block-heading\" id=\"h-schedule-a-cron-job-at-the-beginning-of-every-month\">Schedule a Cron Job at the Beginning of Every Month<\/h3><p>In order to schedule a job at the beginning of every month, you can use the <strong>@monthly<\/strong> operator:<\/p><pre class=\"wp-block-preformatted\">@monthly cat \/home\/helloworld.sh<\/pre><p>Keep in mind that this will execute the job at <strong>12am<\/strong> on the first day of every month. Similarly, there is a<strong> @yearly<\/strong> operator who will run the job on the <strong>first day<\/strong> of every year.<\/p><h3 class=\"wp-block-heading\" id=\"h-schedule-a-job-for-more-than-one-time\">Schedule a Job for More Than One Time<\/h3><p>Users can schedule a cron job to be executed more than once, for example, five times a day. In the following example, we will set up a job to run at <strong>12pm<\/strong>, <strong>3pm<\/strong>, <strong>5pm<\/strong>, <strong>7pm<\/strong> and, <strong>9pm<\/strong>.<\/p><pre class=\"wp-block-preformatted\">0 12,15,17,19,21 * * * cat \/home\/helloworld.sh<\/pre><h3 class=\"wp-block-heading\" id=\"h-run-a-linux-command-after-each-reboot\">Run a Linux Command After Each Reboot<\/h3><p>Similarly to <strong>@daily<\/strong>, <strong>@monthly<\/strong>, and <strong>@yearly<\/strong> operators, bash also comes with a <strong>@reboot<\/strong> command. Users can use it to schedule a job that will be executed each time the system reboots or gets restarted:<\/p><pre class=\"wp-block-preformatted\">@reboot cat \/home\/helloworld.sh<\/pre><h3 class=\"wp-block-heading\" id=\"h-where-is-the-crontab-file-located\">Where Is the Crontab File Located?<\/h3><p>Depending on the system&rsquo;s operating system, crontab will be located at three different locations:<\/p><ul class=\"wp-block-list\">\n<li><strong>MacOS<\/strong> &ndash; \/var\/at\/tabs<\/li>\n\n\n\n<li><strong>Debian-based systems<\/strong> &ndash; \/var\/spool\/cron\/crontabs\/<\/li>\n\n\n\n<li><strong>Red Hat-based systems<\/strong> &ndash; \/var\/spool\/cron<\/li>\n<\/ul><h2 class=\"wp-block-heading\" id=\"h-additional-crontab-actions\">Additional Crontab Actions<\/h2><p>Apart from the current functionality, crontab is also capable of additional actions such as creating a cron execution log or disabling email notifications. Check the sections below for more information.<\/p><h3 class=\"wp-block-heading\" id=\"h-create-a-log-file\">Create a Log File<\/h3><p>The easiest way to log all outputs from cron jobs is to use the following logic:<\/p><pre class=\"wp-block-preformatted\">* * * * * cat \/home\/helloworld.sh &gt;&gt; \/var\/log\/logs.log 2&gt;&amp;1<\/pre><p>This command will save all cron jobs outputs to a file named <strong>logs.log<\/strong><\/p><h3 class=\"wp-block-heading\" id=\"h-disable-email\">Disable Email<\/h3><p>Since cron sends an email to the user after each job, disabling this functionality can be beneficial to avoid spam. Just add this line at the end of your cron job:<\/p><pre class=\"wp-block-preformatted\">&gt;\/dev\/null 2&gt;&amp;1<\/pre><h3 class=\"wp-block-heading\" id=\"h-crontab-environment\">Crontab Environment<\/h3><p>Crontab allows its users to define <a href=\"\/tutorials\/linux-environment-variables\">environment variables<\/a>. This can be done with the aforementioned <strong>crontab -e<\/strong> command. When defining variables, refer to the list below:<\/p><ul class=\"wp-block-list\">\n<li><strong>PATH<\/strong> &ndash; default path for crontab.<\/li>\n\n\n\n<li><strong>SHELL<\/strong> &ndash; default shell.<\/li>\n\n\n\n<li><strong>LOGNAME<\/strong> &ndash; crontab owner. Information is taken from the <strong>\/etc\/passwd<\/strong> directory.<\/li>\n\n\n\n<li><strong>HOME<\/strong> &ndash; user&rsquo;s home directory. Information is taken from the <strong>\/etc\/passwd<\/strong> directory.<\/li>\n<\/ul><h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2><p>Cron jobs are one of the best ways to perform scheduled tasks for <a href=\"\/tutorials\/what-is-vps-hosting\">virtual instances<\/a> and physical Linux systems. With cron jobs, users can schedule various tasks for their system. For example, perform system maintenance on a particular day or even schedule it to be run every weekday.<\/p><p>In this tutorial, we&rsquo;ve covered the majority of crontab operations. We&rsquo;ve also provided some practical examples that you can use when creating a crontab.<\/p><p>If you have any questions or insights, feel free to leave a comment in the comments section.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Automation is one of the key aspects of any system, whether a physical or virtual private server (VPS). If automation [&#8230;]<\/p>\n<p><a class=\"btn btn-secondary understrap-read-more-link\" href=\"\/tutorials\/crontab-syntax\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":279,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"Crontab Syntax on Linux + Useful Examples","rank_math_description":"Crontab stands for cron table, as it uses the job scheduler cron to execute tasks. Check out this article to learn all about crontab syntax.","rank_math_focus_keyword":"crontab syntax","footnotes":""},"categories":[22648,22644],"tags":[],"class_list":["post-65775","post","type-post","status-publish","format-standard","hentry","category-managing-monitoring-and-security","category-vps"],"hreflangs":[{"locale":"en-US","link":"https:\/\/www.hostinger.com\/tutorials\/crontab-syntax","default":0},{"locale":"es-ES","link":"https:\/\/www.hostinger.com\/es\/tutoriales\/sintaxis-crontab","default":0},{"locale":"en-UK","link":"https:\/\/www.hostinger.com\/uk\/tutorials\/crontab-syntax","default":0},{"locale":"en-MY","link":"https:\/\/www.hostinger.com\/my\/tutorials\/what-is-crontab-syntax-understanding-crontab-on-linux-helpful-examples","default":0},{"locale":"en-PH","link":"https:\/\/www.hostinger.com\/ph\/tutorials\/what-is-crontab-syntax-understanding-crontab-on-linux-helpful-examples","default":0},{"locale":"es-MX","link":"https:\/\/www.hostinger.com\/mx\/tutoriales\/sintaxis-crontab","default":0},{"locale":"es-CO","link":"https:\/\/www.hostinger.com\/co\/tutoriales\/sintaxis-crontab","default":0},{"locale":"es-AR","link":"https:\/\/www.hostinger.com\/ar\/tutoriales\/sintaxis-crontab","default":0},{"locale":"en-IN","link":"https:\/\/www.hostinger.com\/in\/tutorials\/crontab-syntax","default":0},{"locale":"en-CA","link":"https:\/\/www.hostinger.com\/ca\/tutorials\/crontab-syntax","default":0},{"locale":"en-AU","link":"https:\/\/www.hostinger.com\/au\/tutorials\/crontab-syntax","default":0},{"locale":"en-NG","link":"https:\/\/www.hostinger.com\/ng\/tutorials\/crontab-syntax","default":0}],"_links":{"self":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/65775","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/users\/279"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/comments?post=65775"}],"version-history":[{"count":16,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/65775\/revisions"}],"predecessor-version":[{"id":132826,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/posts\/65775\/revisions\/132826"}],"wp:attachment":[{"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/media?parent=65775"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/categories?post=65775"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostinger.com\/tutorials\/wp-json\/wp\/v2\/tags?post=65775"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}