惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
I
InfoQ
博客园_首页
G
Google Developers Blog
爱范儿
爱范儿
Last Week in AI
Last Week in AI
量子位
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
月光博客
月光博客
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Bash script vs Python script for sysadmin tasks?
TaiKedz · 2026-06-24 · via DEV Community

TaiKedz

Which do you prefer to sling around, a bash command or a python script?

In my goal to write more python and less shell, for the benefit of my colleagues' sanity, I have been trying to favour Python - specifically, readable and maintainable python.

I have moaned before about how sysadmin scripts often look very messy and unmaintainable, and I have found a perfect example of how that arises.

I needed my team to send me the hostnames, IPs and MAC addresses of their VMs to send to IT for reserving in DHCP, and I started cooking up a python script. Just as I was finishing, I had a flash of inspiration and thought... can't I do just a one-liner in shell?

It's just a matter of getting the default IP and looking for the interface that uses it... I wrote the scirpt so that it could give result for a local host, or a series of specified remote hosts.

Which would you prefer to commit to a tooling repo? :-)

Here's the python script, idiomatic, and hopefully easy to read and maintain. I was going to tell my colleagues "Please clone (script repo) and run the script, supplying the hosts as arguments, like 'gather-ips.py jack@machine1 jack@machine2 ...' (yeah, I would need to send instructions too)

#!/usr/bin/env python

import re
import subprocess
import sys

class SubprocessError(Exception):
    pass


def run(command:list[str]) -> str:
    proc = subprocess.Popen(command, stdout=subprocess.PIPE, text=True)
    stdout, _ = proc.communicate()
    if proc.returncode > 0:
        raise SubprocessError(f"Failed {command}, see stderr.")

    return stdout


def read_ipa(ipa_lines):
    ipa_entries = {}

    current = None

    for line in ipa_lines:
        m = re.match(r"^[0-9]+:\s+(\S+?):.*", line)
        if m:
            current = m.group(1)
            ipa_entries[current] = {}
            continue
        if current is None:
            continue

        current_entry = ipa_entries[current]

        eth_m = re.match(r".+link/ether ([a-fA-F0-9:]+)", line)
        if eth_m:
            current_entry["mac"] = eth_m.group(1)

        inet_m = re.match(r"\s+inet ([0-9.]+)/[0-9]+", line)
        if inet_m:
            current_entry["ipv4"] = inet_m.group(1)

    return ipa_entries


def get_default_ip(ipr_lines):
    default_line = [line for line in ipr_lines if 'default via' in line][0]
    return re.findall(r"src [0-9.]+", default_line)[0][4:]


def get_ipra_lines(host):
    if host:
        lines = run(["ssh", host, "ip r; echo ===; ip a"]).split("\n")
        idx = 0
        for n in range(len(lines)):
            if lines[n] == "===":
                idx = n
                break
        ipr_lines = lines[:idx]
        ipa_lines = lines[idx+1:]
    else:
        ipr_lines = run(["ip", "r"]).split("\n")
        ipa_lines = run(["ip", "a"]).split("\n")

    return ipr_lines,ipa_lines


def ublat(host_string:str):
    try:
        i = host_string.index("@")
        return host_string[i+1:]
    except ValueError:
        return host_string


def get_target(host=None):
    ipr_lines, ipa_lines = get_ipra_lines(host)
    entries = read_ipa(ipa_lines)
    def_ip = get_default_ip(ipr_lines)
    hostname = ublat(host) if host else run(["hostname"]).strip()

    for _, data in entries.items():
        if def_ip in data.get("ipv4", ""):
            print(f"{hostname}\t{data.get('ipv4')}\t{data.get('mac')}")
            return
    print(f"# Nothing in {entries}")


def main():
    if not sys.argv[1:] or "get" in sys.argv[1:]:
        get_target()
        return

    for host in sys.argv[1:]:
        get_target(host)


main()

For sake of comparison, this is its bash equivalent - it does EXACTLY the same thing:

command="echo \"\$(hostname)  \$(ip a|grep \"\$(ip r|grep 'default via'|grep -Po '(?<=src )[0-9.]+')\" -B 1|grep -Po '(?<=ether |inet )(\S+)')\"|xargs echo"

if [[ -z "$*" ]]; then
    bash -c "$command"
    exit
fi

for node in "$@"; do 
    ssh "$node" "$command"
done

In the end, I sent a message to the team and told them:

Hi all,

Please run this on each of your VMs and send me the output via email

echo "$(hostname) $(ip a|grep "$(ip r|grep 'default via'|grep -Po '(?<=src )[0-9.]+')\" -B 1|grep -Po '(?<=ether |inet )(\S+)')"|xargs echo

A one-liner in a single message. No sending scripts around. No instructing to clone and execute. Just "run this on each machine."

Which approach would you have taken