2024-04-25
'ControlMaster auto' for reusing SSH connections

Just add these two lines to your ~/.ssh/config and you’re good to go!

Read More

2023-03-03
Passwordless SSH between systems that share a /home

Just thought I’d share this nugget of knowledge with you all. If you work on linux systems that share a /home directory, that may be NFS-mounted across several other systems, then you can take advantage of this so you don’t have to enter your password every time you ssh between the linux systems.

Read More

2022-07-12
Creating a CLI with Shell Scripting

When tasked to automate anything within Linux, you might find that Shell is the easiest tool to get the job done fast. Most of the time these shell scripts are built for a specific purpose and don’t have any need for configuration in different usage scenarios. However, it is possible to build a fully fleshed Command Line Interface (CLI) using a shell script, which I will outline for you the steps on how to do this.

Read More