-
Notifications
You must be signed in to change notification settings - Fork 1
/
run.sh
executable file
·52 lines (44 loc) · 1.03 KB
/
run.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
################################################################################
### STATIC FUNCTIONS
################################################################################
function debug()
{
cd /tmp
echo "int main(void) { }" > main.c
gcc main.c -o dyn
clang main.c -o exe
cp dyn test/
cp exe test2/
cd
}
function real()
{
cp /bin/ls /bin/date /bin/echo /bin/ping /bin/true /bin/false /tmp/test/
cp /bin/sh /bin/zsh /bin/bash /bin/ifind /usr/sbin/ifconfig /bin/vim /bin/nano /tmp/test2/
}
function error()
{
cp /bin/zdump /usr/sbin/ebtables-save /tmp/test/
cp /sbin/jffs2reader /usr/bin/pnmnoraw /tmp/test2/
}
function usage()
{
echo "usage: ./run.sh [debug | real]"
exit 1
}
################################################################################
### PUBLIC FUNCTION
################################################################################
mkdir -p /tmp/test /tmp/test2
rm -rf /tmp/test/* /tmp/test2/*
case "$1" in
debug|d)
debug ;;
real|r)
real ;;
err|e)
error ;;
*)
usage ;;
esac