Skip to content

Instantly share code, notes, and snippets.

@britmb
britmb / bashing_bash.txt
Created January 10, 2026 05:56 — forked from mattieb/bashing_bash.txt
bashing bash
megaweapon:tmp matt$ mkdir -p foo/baz
megaweapon:tmp matt$ cd foo
megaweapon:foo matt$ PATH=/tmp/foo/baz:/tmp/foo:$PATH
megaweapon:foo matt$ cat >bar
#!/bin/sh
echo "this isn't the bar you're looking for"
megaweapon:foo matt$ chmod +x bar
megaweapon:foo matt$ bar
this isn't the bar you're looking for
megaweapon:foo matt$ cat >baz/bar