
Find Process Name from its PID
If you know the PID of a process, here's how to get the process name in Linux command line.
· Hunter Wittenborn

Find the PID and PPID of a Process in Linux
Learn how to find PID using a process name in Linux. Also learn to get the parent process ID (PPID) of the given process.
· Hunter Wittenborn

What's the Difference Between curl and Wget?
curl and Wget are widely used for downloading files from the web in the Linux terminal. So, what's the difference and which one is better?
· Hunter Wittenborn

Useful Bash Commands You May Not Know About
Here are some lesser known but useful bash commands that will help make the shell scripts you write cleaner and more maintainable.
· Hunter Wittenborn

Unusual Ways to Use Variables Inside Bash Scripts
You might have used variables in Bash before, but probably not like this.
· Hunter Wittenborn

Using Case Statements in Bash
Instead of a bunch of nested if else statements, using case statements can drastically reduce the number of lines in your bash script, making it easier to understand and follow the logic.
· Hunter Wittenborn

A Quick Guide to Using Docker Compose
Docker Compose is a Docker-native tool that makes multi-container application management a breeze.
· Hunter Wittenborn