You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
PATH=/bin
|
|
|
|
echo -n "Mounting filesystems ... "
|
|
mount -t proc proc /proc
|
|
mount -t devtmpfs dev /dev
|
|
mount -t sysfs sys /sys
|
|
mount -t devpts pts /dev/pts
|
|
echo done
|
|
|
|
echo Hello, World
|
|
cd /root
|
|
./quicktest.sh
|
|
sh -i
|