Skip to content

Instantly share code, notes, and snippets.

@eas4ai
Created July 9, 2026 20:35
Show Gist options
  • Select an option

  • Save eas4ai/e178f02958af14d3a5d8a493fd4a9724 to your computer and use it in GitHub Desktop.

Select an option

Save eas4ai/e178f02958af14d3a5d8a493fd4a9724 to your computer and use it in GitHub Desktop.
Linux Sandbox
sandbox() {
local name="${1:?Usage: sandbox <name>}"
local workspace="$HOME/workspace/$name"
bwrap \
--ro-bind / / \
--bind "$workspace" "$workspace" \
--dev /dev \
--proc /proc \
--tmpfs /tmp \
--unshare-pid \
--unshare-ipc \
--unshare-uts \
--die-with-parent \
bash --rcfile "$HOME/.bashrc"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment