I am trying to run two scripts, a start and a stop to capture logs from a DAP Music device connected to my iMac but I keep getting this permission block when i run either :
The content of the first script seems to be :
mydir=$(cd $(dirname $BASH_SOURCE) && pwd)
echo $mydir
cd $mydir
./adb devices
./adb root
./adb shell "setprop vendor.aplogd 1"
./adb shell "getprop veddor.aplog"
The permissions on the file show Read & Write but I'm lost as to why they won't run. I'm pretty vanilla when looking at the Terminal.
Any help appreciated
The content of the first script seems to be :
mydir=$(cd $(dirname $BASH_SOURCE) && pwd)
echo $mydir
cd $mydir
./adb devices
./adb root
./adb shell "setprop vendor.aplogd 1"
./adb shell "getprop veddor.aplog"
The permissions on the file show Read & Write but I'm lost as to why they won't run. I'm pretty vanilla when looking at the Terminal.
Any help appreciated