mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00
11 lines
273 B
Text
Executable file
11 lines
273 B
Text
Executable file
mkdir mnt
|
|
mount -o loop _fs_contents mnt/
|
|
cp ../Userland/sh mnt/bin/sh
|
|
cp ../Userland/id mnt/bin/id
|
|
cp ../Userland/ps mnt/bin/ps
|
|
cp ../Userland/ls mnt/bin/ls
|
|
cp ../Userland/pwd mnt/bin/pwd
|
|
cp ../Userland/sleep mnt/bin/sleep
|
|
cp ../Userland/date mnt/bin/date
|
|
umount mnt
|
|
sync
|