On Sun, 2017-05-14 at 11:53 +0000, Tony Ventura wrote:
> The Desktop app in on my Finder's desktop. I did the following:
>
>
> Launched Terminal and executed the following commands
>
>
> 1. cd Desktop/Denemo.app/contents/MacOS
> 2. I visually confirmed that the .denemo-2.1 folder was in my
> home directory. (CMD+Shift+.)
> 3. rm -rf ~/.denemo* (the .denemo-2.1 folder is now gone
> 4. denemo.sh &> ~/Desktop/denemo_error.txt
>
>
> I've attached the denemo_error.txt file to this e-mail, however, it
> only contains the following text:
>
>
> -bash: denemo.sh: command not found
My guess is that step 4. should have been
./denemo.sh &> ~/Desktop/denemo_error.txt
(and if that says something about not an executable file) you need
chmod a+x denemo.sh && ./denemo.sh &> ~/Desktop/denemo_error.txt
Richard