Earlier quoted context omitted.
I realized exactly this when I wanted to write a backup script for some of my client's websites. My usual process had been to 'manually' backup using rsync, which was a matter of cutting and pasting the commands from a text document. When automating, however, I realized I'd also have to check if certain files (db dumps) were present, and of course if the script itself succeeded. I then realized that in this particula…
Automating is not just about speeding up the process; it's also a way of lowering the bus factor[1] of the process. What happens when you go on vacations, or you get sick? Do the websites stop being backed up? Besides, you should always document your process, and writing a backup script doesn't really take much more time than a detailed description in English. [1] https://en.wikipedia.org/wiki/Bus_factor
1. Write down the directions to do the task 2. Have someone else follow your directions. Any time you need to interrupt them because you missed something add a note or additional step 3. See if any part (or the whole thing) is worth automating