2

ruby shell execute を使用して、Mac に接続されている iOS デバイスを表示しようとしています。

system_profiler SPUSBDataType | grep -A 11 -w "iPad\|iPhone\|iPad"

ターミナルでは、これは正常に出力されます。

文字を適切にエスケープしてRubyコンソールで実行するにはどうすればよいですか

ただし、Fastfile のレーンを使用して同じものを追加する場合は、'\' を使用したエスケープ引用符に注意してください。非ゼロ終了のエラーが発生します。

desc "Register a new device"
  lane :register_new_device do
      UI.message("Detected device")
      sh("system_profiler SPUSBDataType | grep -A 11 -w \"iPad\|iPhone\|iPad\"")
      device_name = prompt(text: "Enter the device name: ")
      device_udid = prompt(text: "Enter the device UDID: ")
      device_hash = {}
      device_hash[device_name] = device_udid
      register_devices(devices: device_hash)
      new_devices
  end

エラー:

[08:23:56]: Exit status of command 'system_profiler SPUSBDataType | grep -A 11 -w "iPad|iPhone|iPad"' was 1 instead of 0.
2018-12-07 08:23:55.602 system_profiler[21056:476660] SPUSBDevice: IOCreatePlugInInterfaceForService failed 0xe00002be

期待される出力:

2018-12-07 08:27:52.170 system_profiler[21266:479375] SPUSBDevice: IOCreatePlugInInterfaceForService failed xx
        iPhone:

          Product ID: xx
          Vendor ID: xx (Apple Inc.)
          Version: xx
          Serial Number: xxx
          Speed: Up to 480 Mb/sec
          Manufacturer: Apple Inc.
          Location ID: xx / 3
          Current Available (mA): xx
          Current Required (mA): xx
          Extra Operating Current (mA): xx

ユーザーが Fastlane マッチにデバイスを追加する前に、シェルでコマンドを実行して出力を表示するにはどうすればよいですか?

4

1 に答える 1