root / clean.sh
History | View | Annotate | Download (543 Bytes)
1 |
#This script is to delete the temp files |
---|---|
2 |
#which are created while running HOPE |
3 |
|
4 |
if [ -f res.txt ] |
5 |
then |
6 |
rm -f res.txt |
7 |
echo removed res.txt |
8 |
fi |
9 |
|
10 |
if [ -f resNo.txt ] |
11 |
then |
12 |
rm -f resNo.txt |
13 |
echo removed resNo.txt |
14 |
fi |
15 |
|
16 |
if [ -f res1.txt ] |
17 |
then |
18 |
rm -f res1.txt |
19 |
echo removed res1.txt |
20 |
fi |
21 |
|
22 |
if [ -f res2.txt ] |
23 |
then |
24 |
rm -f res2.txt |
25 |
echo removed res2.txt |
26 |
fi |
27 |
|
28 |
if [ -f resultAt.txt ] |
29 |
then |
30 |
rm -f resultAt.txt |
31 |
echo removed resultAt.txt |
32 |
fi |
33 |
|
34 |
if [ -f let.txt ] |
35 |
then |
36 |
rm -f let.txt |
37 |
echo removed let.txt |
38 |
fi |
39 |
|
40 |
if [ -f temp.txt ] |
41 |
then |
42 |
rm -f temp.txt |
43 |
echo removed temp.txt |
44 |
fi |