sysxplore's Avatar

sysxplore

@sysxplore.bsky.social

Everything about Linux🐧, DevOps, Networking, Automation, sysadminπŸ±β€πŸ’» & beginner tipsπŸ’‘Newsletter β†’ sysxplore.substack.com

418 Followers  |  2 Following  |  64 Posts  |  Joined: 14.11.2024  |  2.3278

Latest posts by sysxplore.bsky.social on Bluesky

Preview
Linux Infographics + Bash Scripting Handbook Get both of my bash scripting handbook and high-quality infographics.This bundle includes both products in their highest tiers with everything included and with lifetime updates for both.RATED⭐⭐⭐⭐⭐!

Download the high-res pdf cheatsheets + Bash Scripting Handbook here: βœ…

thatstraw.gumroad.com/l/infographi...

02.07.2025 17:24 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Linux cron jobs are not that hard.

You haven’t just seen this.

02.07.2025 17:24 β€” πŸ‘ 7    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux Infographics + Bash Scripting Handbook Get both of my bash scripting handbook and high-quality infographics.This bundle includes both products in their highest tiers with everything included and with lifetime updates for both.RATED⭐⭐⭐⭐⭐!

Download the high-res pdf cheatsheets + Bash Scripting Handbook here: βœ…

thatstraw.gumroad.com/l/infographi...

02.07.2025 17:23 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Bash scripting crash course

02.07.2025 17:23 β€” πŸ‘ 6    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

Bash Scripting Handbook

bashhandbook.com

02.07.2025 17:22 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Want to learn Linux? Great! I'm writing a book to help you get started.

Join 500+ already on the waiting list:
firststepswithlinux.com

18.06.2025 18:36 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Quick Linux tip:

Use du -h to quickly see the size of everything in your current directory.

$ du -h

The -h flag shows sizes in a human-readable format (KB, MB, GB), so you can easily spot large files and directories.

18.06.2025 18:36 β€” πŸ‘ 5    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

Want to learn Linux? Great! I'm writing a book to help you get started.

Join 500+ already on the waiting list:
firststepswithlinux.com

18.06.2025 18:35 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Another excellent method is to utilize shell parameter expansion to replace the ":" pattern with a newline ("n") string.

Here is the syntax:
${parameter//pattern/string}

Look at the example:
$ echo ${PATH//":"/"\n"}

// denotes replacing all instances of ":" with "\n".

18.06.2025 18:35 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

Quick Linux tip:

If you have trouble reading the directories in the $PATH variable, use the tr command to translate colon (":") characters to newline characters ("n") so they can be displayed in lines:

$ echo $PATH | tr ":" "\n"

18.06.2025 18:35 β€” πŸ‘ 6    πŸ” 0    πŸ’¬ 2    πŸ“Œ 0
Preview
Linux Infographics + Notes Bundle 🚨Important🚨Hey, thank you for supporting my work! Unfortunately, there are some payment issues with Gumroad, so I have moved this product to Lemon Squeezy. You can use the link below to purchase it…

Download the high-res pdf version + bash scripting notes here:βœ…
thatstraw.gumroad.com/l/infographi...

27.05.2025 04:50 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Git Cherry-pick vs Merge vs Rebase

27.05.2025 04:50 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux Infographics + Notes Bundle 🚨Important🚨Hey, thank you for supporting my work! Unfortunately, there are some payment issues with Gumroad, so I have moved this product to Lemon Squeezy. You can use the link below to purchase it…

Download the high-res pdf version + bash scripting notes here:βœ…
thatstraw.gumroad.com/l/infographi...

27.05.2025 04:50 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Kubernetes Architecture Crash Course

27.05.2025 04:50 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux Infographics + Notes Bundle 🚨Important🚨Hey, thank you for supporting my work! Unfortunately, there are some payment issues with Gumroad, so I have moved this product to Lemon Squeezy. You can use the link below to purchase it…

Download the high-res pdf version + bash scripting notes here:βœ…
thatstraw.gumroad.com/l/infographi...

27.05.2025 04:50 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Docker components explained

27.05.2025 04:50 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux Infographics + Notes Bundle 🚨Important🚨Hey, thank you for supporting my work! Unfortunately, there are some payment issues with Gumroad, so I have moved this product to Lemon Squeezy. You can use the link below to purchase it…

Download the high-res pdf version + bash scripting notes here:βœ…
thatstraw.gumroad.com/l/infographi...

27.05.2025 04:50 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Loops in bash scripting - crash course

27.05.2025 04:50 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux Infographics + Notes Bundle 🚨Important🚨Hey, thank you for supporting my work! Unfortunately, there are some payment issues with Gumroad, so I have moved this product to Lemon Squeezy. You can use the link below to purchase it…

Download the high-res pdf version + bash scripting notes here:βœ…
thatstraw.gumroad.com/l/infographi...

27.05.2025 04:49 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

TCP 3-Way Handshake explained

27.05.2025 04:49 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux Infographics + Notes Bundle 🚨Important🚨Hey, thank you for supporting my work! Unfortunately, there are some payment issues with Gumroad, so I have moved this product to Lemon Squeezy. You can use the link below to purchase it…

Download the high-res pdf version + bash scripting notes here:βœ…
thatstraw.gumroad.com/l/infographi...

27.05.2025 04:49 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Domain Name System (DNS) Record Types

27.05.2025 04:49 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image 15.05.2025 08:45 β€” πŸ‘ 6    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

Bash Scripting basics: Understanding (), {}, [], $(), $(()), ${}, and [[]]

15.05.2025 07:49 β€” πŸ‘ 7    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Post image

Linux architecture diagram

09.05.2025 02:15 β€” πŸ‘ 9    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Post image

Linux Access Control List Overview

09.05.2025 02:15 β€” πŸ‘ 13    πŸ” 2    πŸ’¬ 0    πŸ“Œ 0

Linux is made using the following:
98.3% - C
0.7% - Assembly
0.4% - Shell
0.2% - Python
0.2% - Makefile
0.1% - Perl
0.1% - Other (like Rust)

09.05.2025 02:14 β€” πŸ‘ 4    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux and DevOps Editable Cheatsheets + PDFs πŸ’‘ When in doubt, cheat!βœ… You will get 40+ high quality pdfsβœ… 100+ beautiful editable cheatsheets. Perfect to help you get the idea of how to create your own cheat sheets.βœ… Exportable to any format (pd...

Get the high-quality PDF version here:βœ…
thatstraw.gumroad.com/l/cheatsheets

02.01.2025 19:49 β€” πŸ‘ 4    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Post image

Bash Scripting Basics

02.01.2025 19:49 β€” πŸ‘ 14    πŸ” 4    πŸ’¬ 1    πŸ“Œ 0
Preview
Linux and DevOps Editable Cheatsheets + PDFs πŸ’‘ When in doubt, cheat!βœ… You will get 40+ high quality pdfsβœ… 100+ beautiful editable cheatsheets. Perfect to help you get the idea of how to create your own cheat sheets.βœ… Exportable to any format (pd...

Get the high-quality PDF version here:βœ…
thatstraw.gumroad.com/l/cheatsheets

02.01.2025 19:40 β€” πŸ‘ 4    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@sysxplore is following 2 prominent accounts