m4ll0k / BBTz

BBT - Bug Bounty Tools (examples💡)
1.72k stars 471 forks source link

Adding SHEBANG, to make it possible to use the script without '-> python <- <script.py>' #10

Closed Cloufish closed 3 years ago

Cloufish commented 4 years ago

Even though It may sound like a nitpick, adding the shebang now provides the possibility to create symlinks for scripts to the directory inside $PATH environment variable. For example, without an added shebang, the interpreter cannot be resolved image

With shebang added, the issue is solved image

And with this, we can setup/copy the script into the directory in $PATH and use it flawlessly

m4ll0k commented 4 years ago

thank you @Cloufish