in src/main/kotlin/com/uber/nanoscope/Adb.kt [40:44]
fun pullFile(remotePath: String, localPath: String): Int {
val process = "adb pull $remotePath $localPath".run()
process.inputStream.bufferedReader().forEachLine { }
return process.waitFor()
}