alt.hn

3/31/2026 at 8:27:50 PM

Safe ways to do things in bash (2023)

https://github.com/anordal/shellharden/blob/master/how_to_do_things_safely_in_bash.md

by gautamsomani

4/1/2026 at 6:08:25 AM

In Python, `shlex` has utilities for quoting and tokenizing strings for POSIX shells.

> Documentation: https://docs.python.org/3/library/shlex.html

(Windows users: CMD is hopeless. Sorry. Try powershell.)

by hun3