File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ $ npm install -g ios-deploy
42
42
-w, --download download app tree
43
43
-2, --to <target pathname> use together with up/download file/tree. specify target
44
44
-V, --version print the executable version
45
+ -e, --exists check if the app with given bundle_id is installed or not
45
46
46
47
## Examples
47
48
@@ -68,6 +69,12 @@ The commands below assume that you have an app called `my.app` with bundle id `b
68
69
// deploy and debug your app to a connected device, uninstall the app first
69
70
ios-deploy --uninstall --debug --bundle my.app
70
71
72
+ // check whether an app by bundle id exists on the device (check return code `echo $?`)
73
+ ios-deploy --exists --bundle_id com.apple.mobilemail
74
+
75
+ // Download the Documents directory of the app *only*
76
+ ios-deploy --download=/Documents -bundle_id my.app.id --to ./my_download_location
77
+
71
78
## Demo
72
79
73
80
* The included demo.app represents the minimum required to get code running on iOS.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ios-deploy" ,
3
- "version" : " 1.3.2 " ,
3
+ "version" : " 1.5.1 " ,
4
4
"description" : " launch iOS apps iOS devices from the command line (Xcode 6)" ,
5
5
"main" : " ios-deploy" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments