Linux Chrontab
The Cron daemon is a service that runs on all main distributions of Unix and Linux. Specifically designed to execute commands at a given time. These jobs are commonly referred to as cronjobs an...
The Cron daemon is a service that runs on all main distributions of Unix and Linux. Specifically designed to execute commands at a given time. These jobs are commonly referred to as cronjobs an...
Backup-daily cat <<EOF >> /home/"$USER"/backup-task/backup-daily.sh #!/bin/bash tar --exclude=<path to ignore file> -zcf /home/"$USER"/backup/daily/backup-\$(date +%Y%m%d).tar...
List All Aliases in Linux alias Create a Temporary Alias in Linux alias c='clear' Create a Permanent Alias in Linux sudo nano ~/.bashrc source ~/.bashrc sudo nano ~/.zshrc source ~/.zshrc ...
Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HT...