about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index d178c33..6633325 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,8 @@ import openbsd
 
 ### pledge
 
+See: https://man.openbsd.org/pledge.2
+
 ```python
 openbsd.pledge("stdio rpath")
 print(open("/etc/resolv.conf"))
@@ -40,6 +42,8 @@ Try removing the`rpath permission.
 
 ### unveil
 
+See: https://man.openbsd.org/unveil.2
+
 ```python
 openbsd.unveil("/etc", "r")
 print(open("/etc/resolv.conf"))
'n60' href='#n60'>60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101