public Quick Tip • 2 min read • How to 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.…
public Tips • 4 min read • How to Find the PID and PPID of a Process in Linux Knowing the PID and PPID of a process can be helpful if you need to manage or interact with a…
public Explain • 3 min read • 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?…
public Bash • 4 min read • 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.…
public Bash • 4 min read • Unusual Ways to Use Variables Inside Bash Scripts You might have used variables in Bash before, but probably not like this.…
public Bash • 4 min read • 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.…
public Docker • 5 min read • A Quick Guide to Using Docker Compose Docker Compose is a Docker-native tool that makes multi-container application management a breeze.…