diff options
author | Martin Szulecki | 2020-07-30 11:42:08 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-07-30 11:42:08 +0200 |
commit | 4bdb4e6a1ebbfd90b59f09af991d3417264ed8f8 (patch) | |
tree | d182a06d81b8e069c29ec30ca66dd05b786698dc | |
parent | 14b0bfa9161407bc15d2065bcc91e6ed248c91ca (diff) | |
download | ideviceinstaller-4bdb4e6a1ebbfd90b59f09af991d3417264ed8f8.tar.gz ideviceinstaller-4bdb4e6a1ebbfd90b59f09af991d3417264ed8f8.tar.bz2 |
Fix wrong binary name in README.md usage examples due to bad copy/paste
Thanks to @Minion3665 for noticing it.
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -57,7 +57,7 @@ First of all attach your device to your machine. Then simply run: ```shell -idevicerestore --list-apps +ideviceinstaller --list-apps ``` This will print a list of `<appid>` identifiers (bundle identifiers) for use @@ -65,12 +65,12 @@ with other commands (see further below). To install an app from a package file use: ```shell -idevicerestore --install <file> +ideviceinstaller --install <file> ``` To uninstall an app with the `<appid>` from the device use: ```shell -idevicerestore --uninstall <appid> +ideviceinstaller --uninstall <appid> ``` Please consult the usage information or manual page for a full documentation of |