From 102af5cc3ca848e7ca32d5189e191060088f4774 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Tue, 25 Jun 2024 04:11:12 -0300 Subject: [PATCH] Fix examples --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8925157..940ba26 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ capabilities. See the manual page for more details: ```ruby +#!/usr/bin/env ruby require "bsd/capsicum" print "In capability mode: ", BSD::Capsicum.in_capability_mode? ? "yes" : "no", "\n" @@ -43,6 +44,7 @@ an architecture where a parent process can spawn one or more child processes to certain tasks but with restrictions in place: ```ruby +#!/usr/bin/env ruby require "bsd/capsicum" print "[parent] In capability mode: ", BSD::Capsicum.in_capability_mode? ? "yes" : "no", "\n"