Silk Test Information Service を Mac からアンインストールする

Mac 上の Apple Safari に対するテストを実行する必要がなくなった場合など、次の手順で Silk Test Information Service を Mac からアンインストールすることができます。

  1. uninstallInfoService.sh のような新しいシェル ファイルを作成します。
  2. 新しいファイルに以下のコードを入力します。
    #!/bin/sh
    
    if launchctl list | grep com.borland.infoservice ; then
      launchctl unload /Library/LaunchAgents/com.borland.infoservice.plist
      echo "unloading Launch Daemon"
    fi
    
    if [ -d "/Applications/Silk" ]
    then
      sudo rm -rf /Applications/Silk
    fi
    
    if [ -f "/Library/LaunchAgents/com.borland.infoservice.plist" ]
    then
      sudo rm /Library/LaunchAgents/com.borland.infoservice.plist
    fi
    
    if [ -f "/usr/local/bin/ideviceinstaller" ]
    then
      sudo rm /usr/local/bin/ideviceinstaller
    fi
    
    exit 0
  3. コマンドラインで chmod +x uninstallInfoService.sh を実行し、シェル ファイルの実行可能にします。
  4. コマンドラインからシェル ファイルを実行します。