We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2c308 commit 00bf421Copy full SHA for 00bf421
install.sh
@@ -0,0 +1,23 @@
1
+#!/usr/bin/env bash
2
+# This Code write by Mr.nope
3
+# Black-Tool 2.0.0
4
+if [[ "$(id -u)" -ne 0 ]]; then
5
+ echo ""
6
+ echo "Please, Run This programm as Root!"
7
8
+ exit 1
9
+fi
10
+main() {
11
+ printf '\033]2;Black-Tool Installing\a'
12
+ clear
13
+ echo "Installing..."
14
+ sleep 2
15
+ apt update
16
+ apt upgrade
17
+ apt install ruby
18
19
+ echo "Finish...!"
20
21
22
+}
23
+main
0 commit comments