nothing

来源:互联网 发布:美工累吗 编辑:程序博客网 时间:2024/05/05 15:50
#!/bin/bashif [ $# != 1 ];thenecho "Params count error"exitfi#crash文件路径mountPaht="/Volumes/WORKGROUP/bugzilla/xunleivideo/1.1/"crashName=$1crashPath=${mountPaht}${crashName}CUR_PWD=`pwd`#复制crash文件到本地cp ${crashPath} ${CUR_PWD}#符号化crashexport DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecrash ${crashName} iCloudPlayIPhone.app > ${crashName}.txtcp ${crashName}.txt ${mountPaht}rm ${crashName}rm ${crashName}.txt

0 0