While I am doing iOS development, I find it useful to open the following file:
/Users/disappearedng/Library/Application Support/iPhone Simulator/6.1/Applications/B957F50E-CF57-4797-AA14-C580F5596E56/Documents/MyApp.sqlite
currently I have the following aliased in my bash_profile:
alias cdi='cd /Users/disappearedng/Library/Application\ Support/iPhone\ Simulator/6.1/Applications'
The reason why I have to stop here is because every new install of the app on my iOS simulator the hash, B957F50E-CF57-4797-AA14-C580F5596E56, will change.
Does anyone know of a good way to alias this so that I can alias the following to a command in my bash_profile?
'/Users/disappearedng/Library/Application Support/iPhone Simulator/6.1/Applications/<any-hash>/Documents/*.sqlite'
I tried using wildcard for the has but the existence of the .DS_Cache file in the folder has cause this to fail.