Mac电脑开发命令汇总

  1. chrome浏览器跨域浏览命令:
    open -a "/Applications/Google Chrome.app" --args --disable-web-security  --user-data-dir=/Users/dmcb/chromeDevUserData/
  2. Mac os 查看隐藏文件快捷线:
    cmd+shift+.
  3. mac下使用命令行安装、卸载ipa包
    # 安装
    brew install --HEAD libimobiledevice 
    
    brew link --overwrite libimobiledevice 
    
    brew install ideviceinstaller 
    
    brew link --overwrite ideviceinstaller
    
    
    # 获取ios的bundleld
    ideviceinstaller -l -o list_user 
    
    # 获取ios的型号
    ideviceinfo -k ProductType
    
    # 获取ios的系统版本
    ideviceinfo -k ProductVersion
    
    # 获取ios的手机名称
    ideviceinfo -k DeviceName
    
    # 获取ios的udid,查看连接的设备udid
    idevice_id -l
    
    # 查看手机所有APP
    ideviceinstaller -l 
    
    # 安装到设备
    ideviceinstaller -i xxx.ipa 
    
    # 卸载app
    ideviceinstaller -u com.xxx.xxx 
    
  4. 验证下载文件的 MD5/SHA1/SHA256
    # 验证SHA-256
    openssl dgst -sha256 /path/to/file
    
    # 验证SHA-1
    openssl sha1 /path/to/file
    
    # 验证 MD5
    openssl md5 /path/to/file
  5. mac 电脑生成 ssh 公钥和私钥
    # 查看ssh公钥和私钥信息
    ls -al ~/.ssh
    
    # 生成新的公钥和私钥
    ssh-keygen -t rsa -C "your_email@example.com"

  6. Xcode证书位置
    ~/Library/MobileDevice/Provisioning Profiles

  7. Flutter命令行打包ipa(基于Flutter3.0以上)
    # 打包profile模式测试包
    Flutter build ipa --export-method=ad-hoc --profile --verbose
    
    # 打包appstore正式,混淆代码Flutter build ipa --export-method=app-store --obfuscate --release --split-debug-info=build/obfuscate3 --verbose

相关文章

显卡天梯图2024最新版,显卡是电脑进行图形处理的重要设备,...
初始化电脑时出现问题怎么办,可以使用win系统的安装介质,连...
todesk远程开机怎么设置,两台电脑要在同一局域网内,然后需...
油猴谷歌插件怎么安装,可以通过谷歌应用商店进行安装,需要...
虚拟内存这个名词想必很多人都听说过,我们在使用电脑的时候...