Abdullah Bukhari
howto · 2025-03-11
How to Send Messages to a Logged-In User in Bash
Learn how to send messages to a logged-in user in Bash effectively. This guide covers essential commands like write and wall, as well as using Git commit messages for communication. Enhance your terminal communication skills and improve collaboration with these practical methods.
howto · 2024-02-15
How to Copy All Files From a Remote Directory
A quick demonstration of copying all the files from a remote directory.
howto · 2024-02-02
How to Pretty Print JSON in a Shell Script
This article is an overview behind printing JSON in a human-readable format.
howto · 2024-02-02
How to Print File After Skipping First X Lines in Bash
A read on how to print a file after skipping the first few lines in Bash.
howto · 2024-02-02
How to Run Mkdir Only When the Directory Does Not Exist
This article provides an overview of creating a directory only when it does not exist.
howto · 2024-02-02
How to Run Regular Expressions Inside a Case Statement in Bash
Logic behind running regex in a case structure in Bash.
howto · 2023-10-10
Python Dict vs Asdict
An overview behind obj._dict_() being at least ten times faster than dataclasses.asdict(obj).