在进行 iOS 开发时,我发现打开以下文件很有用:
/Users/disappearedng/Library/Application Support/iPhone Simulator/6.1/Applications/B957F50E-CF57-4797-AA14-C580F5596E56/Documents/MyApp.sqlite
目前我的 bash_profile 中有以下别名:
alias cdi='cd /Users/disappearedng/Library/Application\ Support/iPhone\ Simulator/6.1/Applications'
我必须在这里停下来的原因是因为在我的 iOS 模拟器上每次新安装应用程序时,哈希 B957F50E-CF57-4797-AA14-C580F5596E56 都会发生变化。
有谁知道一个别名的好方法,以便我可以将以下内容别名为我的 bash_profile 中的命令?
'/Users/disappearedng/Library/Application Support/iPhone Simulator/6.1/Applications/<any-hash>/Documents/*.sqlite'
我尝试对 has 使用通配符,但文件夹中存在 .DS_Cache 文件导致此操作失败。