Today: December 5, 2024 12:27 am
A collection of Software and Cloud patterns with a focus on the Enterprise

Tag: shell


I’ve been working on some HP-UX systems recently and had way too much trouble finding the solution to an issue with how vi, top and other functions displayed in the terminal. For example, when I would start vi rather than blanking the screen, it would just overwrite the lowest line in the terminal with 23y0C1A0y0C~0y0CC56C64C72C. It appeared that vi commands would work, but I couldn’t see anything that was happening. My initial attempt at setting the term failed to produce any results. The final solution is pretty easy: I changed my shell to......

Continue Reading


One of my applications runs on a large assortment of hosts split between various data centers. Some of these are redundant pairs and others are in load balanced clusters. They all require a set of identical files which represent static content and other data. rsync was chosen to facilitate replication of data from a source to many targets. What rsync lacked out of the box was a reporting mechanism to verify that the collection of files across target systems was consistent with the source. Existing solutions Before designing my solution, I searched for......

Continue Reading