summaryrefslogtreecommitdiff
path: root/initrd/bin/sh
diff options
context:
space:
mode:
Diffstat (limited to 'initrd/bin/sh')
-rw-r--r--initrd/bin/sh/catall19
-rw-r--r--initrd/bin/sh/halt2
-rw-r--r--initrd/bin/sh/mkuser7
3 files changed, 0 insertions, 28 deletions
diff --git a/initrd/bin/sh/catall b/initrd/bin/sh/catall
deleted file mode 100644
index a1c8c76..0000000
--- a/initrd/bin/sh/catall
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/shell
-# equalivent to the old "catall" builtin, meant to demo shadowing
-# TODO shadow here
-echo /init/fake.txt:
-cat /init/fake.txt
-echo
-
-echo /init/1.txt:
-cat /init/1.txt
-echo
-
-echo /init/2.txt:
-cat /init/2.txt
-echo
-
-echo /init/dir/3.txt:
-cat /init/dir/3.txt
-echo
-
diff --git a/initrd/bin/sh/halt b/initrd/bin/sh/halt
deleted file mode 100644
index 563aded..0000000
--- a/initrd/bin/sh/halt
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/shell
-echo halt > /initctl \ No newline at end of file
diff --git a/initrd/bin/sh/mkuser b/initrd/bin/sh/mkuser
deleted file mode 100644
index a1544c6..0000000
--- a/initrd/bin/sh/mkuser
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/shell
-touch /Users/user/
-cd /Users/user/
-touch private/
-echo secrets! > private/secret.txt
-touch public/
-echo no secrets here > public/hi.txt \ No newline at end of file