-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
156 lines (132 loc) · 3.1 KB
/
setup.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
clear
RED='\033[1;31m'
NC='\033[0m'
# Print the ASCII art with red color
echo -e "${RED}
00000 00 00 00000000
00 00 00 00
00 00 00 00
00 00000000 00000000
00 00 00
00 00 00
0000 00 00000000
${NC}"
chmod +x *
mkdir -p test_languages
cd test_languages
echo '<?php echo "PHP is installed\n"; ?>' > test.php
echo 'print("Python3 is installed")' > test.py
echo 'puts "Ruby is installed"' > test.rb
echo 'console.log("Node.js is installed");' > test.js
echo '#include <stdio.h>
int main() {
printf("C is installed\n");
return 0;
}' > test.c
gcc test.c -o test_c
echo '#include <iostream>
int main() {
std::cout << "C++ is installed" << std::endl;
return 0;
}' > test.cpp
g++ test.cpp -o test_cpp
echo 'echo "Shell is installed"' > test.sh
echo 'public class Test {
public static void main(String[] args) {
System.out.println("Java is installed");
}
}' > Test.java
echo 'print "Perl is installed\n";' > test.pl
echo 'package main
import "fmt"
func main() {
fmt.Println("Go is installed")
}' > test.go
echo 'fn main() {
println!("Rust is installed");
}' > test.rs
echo '<!DOCTYPE html>
<html>
<head>
<title>Test HTML</title>
</head>
<body>
<h1 id="heading">HTML is working</h1>
<h1 id="heading">Css is working</h1>
<h1 id="heading">JavaScript is working</h1>
<style>
#heading {
color: blue;
}
</style>
<script>
document.getElementById("heading").style.color = "red";
</script>
</body>
</html>' > index.html
chmod +x *
clear
echo " File has Creatade
"
echo "Updating package manager and upgrading existing packages..."
yes | pkg up -y
apt update && apt upgrade -y
clear
echo -e "Installing \e[1;31mGIT\e[0m................"
echo "
"
pkg install git -y
clear
echo -e "Installing \e[1;32mPHP\e[0m................"
echo "
"
pkg install php-cli -y
clear
echo -e "Installing \e[1;33mPYTHON\e[0m.............."
echo "
"
pkg install python -y
clear
echo -e "Installing \e[1;34mRUBY\e[0m.................."
echo "
"
pkg install ruby -y
clear
echo -e "Installing \e[1;35mNODEJS\e[0m..............."
echo "
"
pkg install nodejs-lts -y
clear
echo -e "Installing \e[1;36mJAVA\e[0m................."
echo "
"
pkg install openjdk-17-jdk -y
clear
echo -e "Installing \e[1;38mPERL\e[0m.................."
echo "
"
pkg install perl -y
clear
echo "C installed"
echo "C++ installed"
echo "Html installed"
echo "Css installed"
echo "jsvaScipt installed"
echo "
"
RED='\033[1;32m'
NC='\033[0m' # No Color
# Print the ASCII art with red color
echo -e "${RED}
00000 00 00 00000000
00 00 00 00
00 00 00 00
00 00000000 00000000
00 00 00
00 00 00
0000 00 00000000
${NC}"
cd ..
echo " Complete Your all Package"
rm -rf README.md
rm -rf setup.sh