Post
Topic
Board Beginners & Help
Re: Changing Location of Bitcoin-qt files on Mac
by
gym
on 25/05/2013, 00:14:36 UTC
i have a little bash script that i use to launch the app. it is in its own subfolder, with another folder next to that titled Bitcoin.:

Code:
#!/bin/sh
PWD=`dirname "${0}"`
cd "${PWD}"; ./Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt -datadir=./Bitcoin

put that in a file, make it executable and there you have it. hopefully you can figure out how to change the location based on that Smiley