xtiankisutsa / MARA_Framework

MARA is a Mobile Application Reverse engineering and Analysis Framework. It is a toolkit that puts together commonly used mobile application reverse engineering and analysis tools to assist in testing mobile applications against the OWASP mobile security threats.
http://www.shadowinfosec.io
GNU Lesser General Public License v3.0
630 stars 175 forks source link

Bash Script Shebang #16

Closed 0xmachos closed 5 years ago

0xmachos commented 5 years ago

It might be worth changing the shebang in the bash scripts from

#!/bin/bash

to

#!/usr/bin/env bash

The later is more portable and will allow us to remove the multiple sed invocations from setup_mac.sh.

xtiankisutsa commented 5 years ago

That's quite agreeable. I wouldn't mind trying it out and seeing how well it would work.

xtiankisutsa commented 5 years ago

Thanks for resolving this issue.