Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
端末コマンドから現在のディレクトリを参照するにはどうすればよいですか:
xcrun -sdk iphoneos PackageApplication -v "[current dir]/target/My App.app" -o "[current dir]/target/MyApp.ipa"
[現在のディレクトリ] = この値を取得するにはどうすればよいですか?
したがって、基本的に、コマンドでディレクトリ全体を入力したくありません。現在実行中のディレクトリを調べたい
xcrun -sdk iphoneos PackageApplication -v "$PWD/target/My App.app" -o "$PWD/target/MyApp.ipa"