mac常用終端命令 附Xcode7命令行打包新命令

一、常用

  1. cd
    cd+空格+目錄
    ~ 為用戶根目錄
    ./ 為當前目錄
    / 根目錄為
    .. 上級目錄

  2. ls
    ls +目錄或不加
    -a 顯示隱藏文件
    -l 顯示詳細信息
    -R 顯示子目錄文件

  3. pwd
    顯示當前的目錄

  4. echo
    echo +空格+內容
    打印出內容

  5. mkdir
    mkdir+空格+文件夾路徑
    rmdir
    刪除一個文件夾
    mvdir
    移動或重命名一個文件夾

  6. mv 移動
    cp 復制
    rm 刪除

  7. sed -i ".bak" "s/wa/fb/g" 11.txt
    替換
    mac下強制要求備份,所以會有一個自定義后綴名的比如.bak的備份文件

  8. curl命令
    get
    curl --include(是否帶響應頭) 'http://apis.baidu.com/apistore/weatherservice/citylist?cityname=%E6%9C%9D%E9%98%B3'
    post
    curl -F "file=@/tmp/example.ipa" -F "uKey=XXX" -F "_api_key=XXX" http://www.pgyer.com/apiv1/app/upload
    curl -d "leaderboard_id=7778a8143f111272&score=19&app_key=8d49f16fe034b98b&_test_user=test01" "http://172.16.102.208:8089/wiapi/score"

  9. cat
    cat fileName
    顯示文件內容

  10. file
    file filename
    獲取文件信息

  11. >重定向,覆蓋掉原來內容
    >>重定向,附加到原來內容之后

二、命令行打ipa包(xcode7+)

#clean
xcodebuild clean -target targetName -configuration Release or Debug -sdk phones
#archive
xcodebuild archive -project xxx.xcodeproj -scheme xxx -archivePath XXX.xcarchive
#生成ipa(xcode7需要配置一個plist文件)
xcodebuild -exportArchive -archivePath XXX.xcarchive -exportPath ./ -exportOptionsPlist ./exportOptionsPlist.plist
打包的時候證書和描述文件要配置正確,可以使用sed命令替換project.pbxproj的相應內容
之前的xcodebuild build和xcrun命令也可以打包,但是符號表沒辦法打進去

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>teamID</key>
    <string>your teamID</string>
    <key>method</key>
    <string>app-store</string>
    <key>uploadBitcode</key>
    <false/>
</dict>
</plist>

具體的配置可選項

Available keys for -exportOptionsPlist:

    compileBitcode : Bool

        For non-App Store exports, should Xcode re-compile the app from bitcode? Defaults to YES.

    embedOnDemandResourcesAssetPacksInBundle : Bool

        For non-App Store exports, if the app uses On Demand Resources and this is YES, asset packs are embedded in the app bundle so that the app can be tested without a server to host asset packs. Defaults to YES unless onDemandResourcesAssetPacksBaseURL is specified.

    iCloudContainerEnvironment

        For non-App Store exports, if the app is using CloudKit, this configures the "com.apple.developer.icloud-container-environment" entitlement. Available options: Development and Production. Defaults to Development.

    manifest : Dictionary

        For non-App Store exports, users can download your app over the web by opening your distribution manifest file in a web browser. To generate a distribution manifest, the value of this key should be a dictionary with three sub-keys: appURL, displayImageURL, fullSizeImageURL. The additional sub-key assetPackManifestURL is required when using on demand resources.

    method : String

        Describes how Xcode should export the archive. Available options: app-store, package, ad-hoc, enterprise, development, and developer-id. The list of options varies based on the type of archive. Defaults to development.

    onDemandResourcesAssetPacksBaseURL : String

        For non-App Store exports, if the app uses On Demand Resources and embedOnDemandResourcesAssetPacksInBundle isn't YES, this should be a base URL specifying where asset packs are going to be hosted. This configures the app to download asset packs from the specified URL.

    teamID : String

        The Developer Portal team to use for this export. Defaults to the team used to build the archive.

    thinning : String

        For non-App Store exports, should Xcode thin the package for one or more device variants? Available options: <none> (Xcode produces a non-thinned universal app), <thin-for-all-variants> (Xcode produces a universal app and all available thinned variants), or a model identifier for a specific device (e.g. "iPhone7,1"). Defaults to <none>.

    uploadBitcode : Bool

        For App Store exports, should the package include bitcode? Defaults to YES.

    uploadSymbols : Bool

        For App Store exports, should the package include symbols? Defaults to YES.

更詳細的用法請參考文檔:命令行輸入man xcodebuild

額外有用的命令

#獲取版本號(多個target都會被設置,target的info.pilst目錄一定要設置為相對目錄)
xcrun agvtool what-marketing-version
#設置版本
xcrun agvtool new-marketing-version 3.0.0
#設置short version
xcrun agvtool new-version -all 25
#設置版本號
/usr/libexec/PlistBuddy Set :CFBundleIdentifier com.apple.plistbuddy
Set :CFBundleIdentifier com.apple.plistbuddy
Sets the CFBundleIdentifier property to com.apple.plistbuddy
Add :CFBundleGetInfoString string "App version 1.0.1"
Adds the CFBundleGetInfoString property to the plist
Add :CFBundleDocumentTypes: dict
Adds a new item of type dict to the CFBundleDocumentTypes array
Add :CFBundleDocumentTypes:0 dict
Adds the new item to the beginning of the array
Delete :CFBundleDocumentTypes:0 dict
Deletes the FIRST item in the array
Delete :CFBundleDocumentTypes
Deletes the ENTIRE CFBundleDocumentTypes array

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容