Readers like you help support MUO. When you make a purchase using links on our site, we may earn an affiliate commission. Read More.
Let's say you're a programmer or a code blogger, and want to save some time. What are some tasks that you can do in automation to save yourself some time?
2013-01-24 18:12:37
Cron is an excellent method for automating daily (or weekly, monthly, etc.) Linux tasks. Here are a few links to get you started:http://sdn.vlsm.org/share/LDP/LAME/using-cron.htmlhttp://www.reallylinux.com/docs/basiccron.shtmlhttp://www.linux.org/article/view/automation-of-taskshttp://www.ghacks.net/2009/01/11/using-cron-to-automate-linux-tasks/http://www.centos.org/docs/5/html/Deployment_Guide-en-US/ch-autotasks.htmlCron is widely used by people who maintain servers for all types of Web sites. It's a great tool for freeing up time to allow you to do other tasks.
2013-01-23 00:12:56
You can do virtually anything. It's Linux!Some suggestions:Automatic sorting system for downloaded files. Bonus points for making it smart enough to be user programmable and take into account anything from time of day to current wifi network.If you have some websites, make an application that checks that they are all online and displays their status in a easy to read graphical form.Make a program to turn on and off your wireless router at specific intervals, or automatically restart it if it crashes. This should be possible through either telnet or just the HTTP interface of your router.Anyway, what you can do is specific to you, these are just some things I've been working on automating recently.