0

I have 777 permissions for the app AquaLess installed by MacPorts.

I run

./AquaLess.app

I get

zsh: permission denied: ./AquaLess.app

This is a strange warning, since I have 777 permissions.

How can you use the program installed by MacPorts?

Léo Léopold Hertz 준영
  • 134,464
  • 179
  • 445
  • 697

2 Answers2

6

Type open AquaLess.app

A file with .app extension isn't an executable file. It's a directory that contains various resources in ways that Mac OS knows how to open.

You would get the same warning if you tried to execute $HOME.

StKiller
  • 7,631
  • 10
  • 43
  • 56
Paul Tomblin
  • 179,021
  • 58
  • 319
  • 408
1

Or you could run:

$ ./AquaLess.app/Contents/MacOS/AquaLess

Which runs the actual executable within the .app bundle.

Ben
  • 542
  • 1
  • 5
  • 12