600
you are viewing a single comment's thread
view the rest of the comments
[-] kogasa@programming.dev 0 points 1 year ago* (last edited 1 year ago)

I can't think of a single reason to use bash over Python. Anything you can do in bash can be done in pure Python. Unless you're working in some embedded environment it's a non-issue to install a Python interpreter (you certainly already have one). I would only use sh/bash for packages I'm distributing to avoid the external dependency, and then only if it's a relatively simple script.

[-] bort 18 points 1 year ago

I know whatever environment I run my shell script in has sh, I can't rely on (the right version of) python being there.

[-] kogasa@programming.dev -5 points 1 year ago
[-] Chunk@lemmy.world 6 points 1 year ago

Because you could be on another machine that doesn't have Python 3.X it only has 3.X-1. or you could write code for Python 3.12 and then four years later no one has 3.12 anymore.

Sometimes you need to download packages from pip but pip might not be available or you may be hitting your company's internal pip mirror.

[-] kogasa@programming.dev -2 points 1 year ago

How often are you writing scripts that accidentally require a specific minor version of Python 3 to run? If you have dependencies, 1) you're no longer scripting, and 2) you need to manage your runtime environment anyway.

[-] RubberDucky@programming.dev 3 points 1 year ago

Runtime environments can change often, if you need to install your application on a ton of PC's you don't want to install python version 3.X on all of those instead you could just compile it into a native binary, pip is the most unsafe hell

[-] kogasa@programming.dev 0 points 1 year ago

If you're compiling a native binary you DEFINITELY aren't in scripting territory anymore.

load more comments (17 replies)
this post was submitted on 06 Aug 2023
600 points (97.3% liked)

Programmer Humor

18952 readers
950 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS