-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunall.sh
executable file
·31 lines (31 loc) · 1.02 KB
/
runall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
cd img/&&
./create.sh&&
cd ..&&
cp -a img/map.img .&&
cp -a img/sectors.img .&&
cp -a img/files.img .&&
cd program/&&
./makeshell.sh shell.c shellfunc.c&& #buat program external shell
./makeprogram.sh cat&& #buat program external cat
./makeprogram.sh cp&& #buat program external cp
./makeprogram.sh rm&& #buat program external rm
./makeprogram.sh mv&& #buat program external mv
./makeprogram.sh mkdir&& #buat program external mkdir
./makeprogram.sh ln&& #buat program external ln
cd ..&&
cp -a program/cat .&& #copy cat bin file to root
cp -a program/cp .&& #copy cp bin file to root
cp -a program/rm .&& #copy rm bin file to root
cp -a program/ln .&& #copy ln bin file to root
cp -a program/mkdir .&& #copy mkdir bin file to root
cp -a program/mv .&& #copy bin mv file to root
./loadfile.sh&& #load shell
./loadshell.sh&& #load shell
./loadfile cat&& #load cat
./loadfile cp&& #load cp
./loadfile rm&& #load rm
./loadfile mkdir&& #load mkdir
./loadfile mv&& #load mv
./loadfile ln&& #load ln
./loadfile tes2.txt&& #load testfile
./buildrun.sh