Skip to content

Commit d403504

Browse files
committed
docs(readme): fix typo
1 parent 4ed56fb commit d403504

File tree

3 files changed

+282
-147
lines changed

3 files changed

+282
-147
lines changed

README.md

Lines changed: 94 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,37 @@ BZip2 Shell Exec is a specially designed tool, where when run, this tool will en
2727
# Installation Instructions
2828
## Termux
2929
Here is how to install BZip2 Shell Exec in Termux app!
30-
- `$ pkg update -y && pkg upgrade -y`
31-
- `$ pkg install git bzip2 xz-utils -y`
32-
- `$ git clone https://github.com/FajarKim/bz2-shell`
33-
- `$ cd bz2-shell`
30+
- ```shell
31+
pkg update -y && pkg upgrade -y
32+
```
33+
- ```shell
34+
pkg install git bzip2 xz-utils -y
35+
```
36+
- ```shell
37+
git clone https://github.com/FajarKim/bz2-shell
38+
```
39+
- ```shell
40+
cd bz2-shell
41+
```
3442

3543
Then, run the file `bzsh.sh` to start encrypting the shell file.
36-
- `$ bash bzsh.sh --help`
44+
- ```shell
45+
bash bzsh.sh --help
46+
```
3747

3848
If you want to install it to the `$PATH` folder, just run the `install.sh` file located in the `tools/Termux` folder.
39-
- `$ tools/Termux/install.sh`</br>
40-
or
41-
- `$ cd tools/Termux && bash install.sh`
49+
- ```shell
50+
tools/Termux/install.sh
51+
```
52+
or
53+
- ```shell
54+
cd tools/Termux && bash install.sh
55+
```
4256

4357
If installed successfully, run the command:
44-
- `$ bzsh --help`
58+
- ```shell
59+
bzsh --help
60+
```
4561

4662
You can also use this method:
4763
<table>
@@ -52,46 +68,67 @@ You can also use this method:
5268
<tr>
5369
<td><div align="center"><b>curl</b></div></td>
5470
<td><div align="left">
55-
<pre><code>$ pkg install curl</code></pre>
56-
<pre><code>$ bash -c "$(curl -fsSL https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh)"</code></pre></div></td>
71+
<pre class="language-shell"><code>pkg install curl</code></pre>
72+
<pre class="language-shell"><code>bash -c "$(curl -fsSL https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh)"</code></pre></div></td>
5773
</tr>
5874
<tr>
5975
<td><div align="center"><b>wget</b></div></td>
6076
<td><div align="left">
61-
<pre><code>$ pkg install wget</code></pre>
62-
<pre><code>$ bash -c "$(wget -qO- https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh)"</code></pre></div></td>
77+
<pre class="language-shell"><code>pkg install wget</code></pre>
78+
<pre class="language-shell"><code>bash -c "$(wget -qO- https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh)"</code></pre></div></td>
6379
</tr>
6480
<tr>
6581
<td><div align="center"><b>fetch</b></div></td>
6682
<td><div align="left">
67-
<pre><code>$ pkg install fetch</code></pre>
68-
<pre><code>$ bash -c "$(fetch -o - https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh)"</code></pre></div></td>
83+
<pre class="language-shell"><code>pkg install fetch</code></pre>
84+
<pre class="language-shell"><code>bash -c "$(fetch -o - https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh)"</code></pre></div></td>
6985
</tr>
7086
</table>
7187

7288
As an alternative, you can first download the `install.sh` script and run it afterwards:
73-
```text
74-
$ pkg install wget
75-
$ wget https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh
76-
$ bash install.sh
77-
```
89+
- ```shell
90+
pkg install wget
91+
```
92+
- ```shell
93+
wget https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Termux/install.sh
94+
```
95+
- ```shell
96+
bash install.sh
97+
```
98+
7899
## Linux
79100
Here is how to install BZip2 Shell Exec on Linux (like Ubuntu)!
80-
- `$ pkg update -y && pkg upgrade -y`
81-
- `$ pkg install git bzip2 xz-utils -y`
82-
- `$ git clone https://github.com/FajarKim/bz2-shell`
83-
- `$ cd bz2-shell`
101+
- ```shell
102+
apt update -y && apt upgrade -y
103+
```
104+
- ```shell
105+
apt install git bzip2 xz-utils -y
106+
```
107+
- ```shell
108+
git clone https://github.com/FajarKim/bz2-shell
109+
```
110+
- ```shell
111+
cd bz2-shell
112+
```
84113

85114
Then, run the file `bzsh.sh` to start encrypting the shell file.
86-
- `$ bash bzsh.sh --help`
115+
- ```shell
116+
bash bzsh.sh --help
117+
```
87118

88119
If you want to install it to the `$PATH` folder, just run the `install.sh` file located in the `tools/Linux` folder.
89-
- `$ tools/Linux/install.sh`</br>
90-
or
91-
- `$ cd tools/Linux && bash install.sh`
120+
- ```shell
121+
tools/Linux/install.sh
122+
```
123+
or
124+
- ```shell
125+
cd tools/Linux && bash install.sh
126+
```
92127

93128
If installed successfully, run the command:
94-
- `$ bzsh --help`
129+
- ```shell
130+
bzsh --help
131+
```
95132

96133
You can also use this method:
97134
<table>
@@ -102,30 +139,34 @@ You can also use this method:
102139
<tr>
103140
<td><div align="center"><b>curl</b></div></td>
104141
<td><div align="left">
105-
<pre><code>$ apt install curl</code></pre>
106-
<pre><code>$ bash -c "$(curl -fsSL https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh)"</code></pre>
142+
<pre class="language-shell"><code>apt install curl</code></pre>
143+
<pre class="language-shell"><code>bash -c "$(curl -fsSL https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh)"</code></pre>
107144
</div></td>
108145
</tr>
109146
<tr>
110147
<td><div align="center"><b>wget</b></div></td>
111148
<td><div align="left">
112-
<pre><code>$ apt install wget</code></pre>
113-
<pre><code>$ bash -c "$(wget -qO- https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh)"</code></pre></div></td>
149+
<pre class="language-shell"><code>apt install wget</code></pre>
150+
<pre class="language-shell"><code>bash -c "$(wget -qO- https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh)"</code></pre></div></td>
114151
</tr>
115152
<tr>
116153
<td><div align="center"><b>fetch</b></div></td>
117154
<td><div align="left">
118-
<pre><code>$ apt install fetch</code></pre>
119-
<pre><code>$ bash -c "$(fetch -o - https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh)"</code></pre></div></td>
155+
<pre class="language-shell"><code>apt install fetch</code></pre>
156+
<pre class="language-shell"><code>bash -c "$(fetch -o - https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh)"</code></pre></div></td>
120157
</tr>
121158
</table>
122159

123160
As an alternative, you can first download the `install.sh` script and run it afterwards:
124-
```text
125-
$ apt install wget
126-
$ wget https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh
127-
$ bash install.sh
128-
```
161+
- ```shell
162+
apt install wget
163+
```
164+
- ```shell
165+
wget https://raw.githubusercontent.com/FajarKim/bz2-shell/master/tools/Linux/install.sh
166+
```
167+
- ```shell
168+
bash install.sh
169+
```
129170

130171
# Instructions for Use
131172
This tool is programmed to be run with several commands. Supported commands:
@@ -162,21 +203,21 @@ This tool is programmed to be run with several commands. Supported commands:
162203

163204
How to run this tool:
164205
#### Example 1
165-
```text
166-
$ bzsh.sh -t bash -f FILE
206+
```shell
207+
bzsh.sh -t bash -f FILE
167208
```
168209
or
169-
```text
170-
$ bzsh.sh --type-shell bash --file FILE
210+
```shell
211+
bzsh.sh --type-shell bash --file FILE
171212
```
172213
#### Example 2
173214
If you want to encrypt more than 1 file at the same time, you can do that.
174-
```text
175-
$ bzsh.sh -t bash -f FILE1 FILE2 FILE3 etc...
215+
```shell
216+
bzsh.sh -t bash -f FILE1 FILE2 FILE3 etc...
176217
```
177218
or
178-
```text
179-
$ bzsh.sh --type-shell bash --file FILE1 FILE2 FILE3 etc...
219+
```shell
220+
bzsh.sh --type-shell bash --file FILE1 FILE2 FILE3 etc...
180221
```
181222

182223
## License
@@ -204,14 +245,18 @@ For more convoluted language, see the [LICENSE](LICENSE).
204245
</div>
205246

206247
### Donate
207-
For those who would like to donate to the development and progress of this account, please click the link below! I thank you very much to those who want to donate 😊😊😊
248+
Love the project? Please consider donating to help it improve!
208249
<div align="left">
209250
<a href="https://github.com/sponsors/FajarKim/"><img src="https://img.shields.io/badge/GitHub-Sponsor-blue?s&labelColor=302d41&color=f5bde6&logo=github&logoColor=d9e0ee&style=for-the-badge" alt="GitHub Sponsor"></a>
210251
<a href="https://paypal.me/agusbirawan/"><img src="https://img.shields.io/badge/PayPal-Donate-blue?s&labelColor=302d41&color=f4dbd6&logo=paypal&logoColor=d9e0ee&style=for-the-badge" alt="PayPal Donate"></a>
211252
<a href="https://buymeacoffee.com/fajarkim/"><img src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Donate-blue?s&labelColor=302d41&color=eed49f&logo=buymeacoffee&logoColor=d9e0ee&style=for-the-badge" alt="Buy Me a Coffee"></a>
212253
<a href="https://trakteer.id/FajarKim/"><img src="https://github.com/FajarKim/bz2-shell/assets/86386385/c1d4c7fe-90a4-4121-8ab7-2bfac61285f2" alt="Trakteer.id Donate"></a>
213254
</div>
214255

256+
Are you considering supporting the project by donating to me? Please DO NOT!!
257+
258+
Please visit [this link](https://fajarkim.github.io/donate) and make a small donation to help the people in need. A small donation goes a long way. ❤️
259+
215260
### Similar Repositories
216261
Free:
217262
- [LZip Shell Exec](https://github.com/FajarKim/lzip-shell)

0 commit comments

Comments
 (0)