#BashScripting
If you're interested in any of these or similar topica, please consider following @geokdev.bsky.social and myself.

#sysadmin #netadmin #devops #PowerShell #bashscripting
System admins / network admins , infrastructure engineers and devops folks : let's connect.

We need to build a meaningful community and a nice for you page. Reading about configs, powershell, bash, tooling and tips.

Reach out and let's connect!
October 27, 2024 at 7:48 PM
FYI

You can emulate this Python line

"keyword".startswith(cmd)

in #bash, using the following:

[[ "keyword" = ${cmd}* ]]

With one catch:
cmd must NOT contain any whitespace.

#BashProgramming #BashScripting #Scripting
March 7, 2026 at 5:19 AM
Working on a self-service script for my Linux users to join our AD. All of this for compliance reasons. Is there really no decent MDM for Linux that's free and can tie into AD? Ugh. #bashscripting #linux #ubuntu #linuxmdm1
January 29, 2025 at 4:58 PM
🔗 Snakemake for Bioinformatics – Playlist
👉 youtube.com/playlist?lis...
Been putting together a simple series on bioinformatics workflows using Bash & Snakemake. Fairly beginner-friendly.
Try it out.
#Snakemake #Bioinformatics #BashScripting #ReproducibleScience #BioinformaticsForBeginners
Snakemake for Bioinformatics - YouTube
Here is a playlist to get you started with Snakemake for Bioinformatics. These are beginner-friendly tutorials regardless of whether you are just starting ou...
youtube.com
July 18, 2025 at 2:59 AM
Private Umfrage aus Interesse:

WENN du es NICHT lernen MUSSTEST (Schule, Studium, Arbeit), WARUM hast du angefangen, programmieren zu lernen?

Was war das Initiale Interesse?

Ich freue mich über jeden Kommentar.
Egal ob Java, Javascript, #C, Python.. auch bashscripting, wie kam es dazu?
November 23, 2023 at 7:57 AM
Want to keep your Linux Mint system fully patched unattended? 💻✨

We just published a guide on how to write a non-interactive Bash script and use Cron to handle your system updates headlessly.

ihaveapc.com/2026/07/how-...

#LinuxMint #Linux #BashScripting #TechTips #SysAdmin
How to Automatically Update Linux Mint Using Bash and Cron
This article walks you through automatically updating Linux Mint using a bash script and scheduling it with cron to run every 3 hours.
ihaveapc.com
July 27, 2026 at 10:01 PM
🔄 Need to retrieve debug information periodically with SSH and SSH multiplexing? Our guide provides a bash script to automate this process efficiently. 🖥️🔧 Check it out here: pupuweb.com/bash-script-... #SSH #BashScripting #TechTips
BASH script to retrieve debug information periodically with SSH and SSH multiplexing - PUPUWEB
This article describes how to create a BASH script for continuous monitoring via an SSH connection for a specific time and an unknown amount of data that
pupuweb.com
August 1, 2024 at 2:23 PM
The siren song of quick and dirty shell scripts is impossible to resist when the adrenaline kicks in.

👉 Follow us for daily dev humor!

#DevLife #CodeHumor #BashScripting #SoftwareEngineering #ProductionBug
September 9, 2026 at 8:31 AM
There is no documentation powerful enough to stop a developer from writing custom bash on a Friday afternoon.

🚀 Follow for your daily dose of developer jokes!

#DevLife #BashScripting #CodeHumor #SoftwareEngineering #Programming
August 19, 2026 at 6:23 PM
So I am putting any Bash Scripts I come with in a seperate @Codeberg repo. I may change it's owner from me to the Hybridized-Concepts Organization I created for the blog of the same name I am trying to build.

If anyone is interested.

#linux
#bashscripting

https://codeberg.org/CWSmith/bash_scripts
November 8, 2024 at 4:14 PM
Hey NerdSky.

Anybody out there use Gnome and have a method for exposing the active window's metadata to a bash shell script?

Hyprland has a socket I can use socat on to handle events but I want to convert a script to work with Gnome and I'm not sure if I even can.

#Linux #BashScripting
July 12, 2025 at 10:53 PM
Discussion overview on using `timeout` in Bash scripts. Covered different implementation methods (external `timeout` command vs. pure Bash), practical use cases, and related best practices. #BashScripting 1/5
May 27, 2025 at 10:00 AM
📌 Read `.passwd` file using C code and bash script. Functions: `setreuid`, `system`. #CyberSecurity #BashScripting https://tinyurl.com/22od6rrx
Understanding the Challenge
This challenge builds upon the previous Bash - System 1 level, introducing additional complexity. Th...
tinyurl.com
December 7, 2025 at 10:10 PM
January 18, 2025 at 2:20 AM
Tangentially related:

If you want the first word in a string,
up to but excluding the first space,
this is how in #bash :

${message%% *}

#BashProgramming #BashScripting
FYI

You can emulate this Python line

"keyword".startswith(cmd)

in #bash, using the following:

[[ "keyword" = ${cmd}* ]]

With one catch:
cmd must NOT contain any whitespace.

#BashProgramming #BashScripting #Scripting
March 7, 2026 at 5:38 AM