Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/d3fenderz/bash-scripts

Various Bash scripts that used to be separate repos. All-In-One repo!
https://github.com/d3fenderz/bash-scripts

anti-ddos bash-script experimental fun linux poc security unix

Last synced: 23 days ago
JSON representation

Various Bash scripts that used to be separate repos. All-In-One repo!

Awesome Lists containing this project

README

        

# Bash Scripts (J.)

## How to

It's better to make those scripts executable with `chmod +x [ SCRIPT ]` and then execute them like that:

```
./[ SCRIPT ]
```

Alternatively, you may use:

```
bash [ SCRIPT ]
```

Here are additional instructions for specific scripts:

### ProcDDoS

```
sudo su
./proc_ddos
```

### FileCleaner

```
./file_cleaner [ FILE_1 ] [ FILE_2 ] [ FILE_n ]
```

Alternatively, you can pass wildcards:

```
./file_cleaner *.jpg
```

## How to use submodules

You may need the following command if it's your first clone of the project:

```
git clone [email protected]:d3fenderz/bash-scripts.git && cd bash-scripts
git submodule update --init --recursive
```

Otherwise, you may download each script one by one.