What is the `pwd` of a Mac bundled app?
I'm running a GLFW app (that I wrote in C++) I run it as follows: ./prog.app/Contents/MacOS/prog # from the command line However, my code can't read relative-pathed files properly. So I believe what's happening is that this Mac Bundle is changing my current directory. 1) what does it change it to? 2) can I control this? Thanks! ...