Usage: ${command} [OPTION...] [PACKAGE | APP_ID]
Install or remove applications from a Palm device.

Options:
-d, --device=DEVICE         # specify DEVICE to use
-l, --list                  # list the installed applications
-r, --remove                # remove applications instead of installing
    --version               # display version info and exit
    --help                  # display this help and exit

PACKAGE is the file path of the package to install,
e.g. ~/projects/packages/com.example.app_1.0_all.ipk.

APP_ID is the id of the application to remove.

DEVICE is a unique device id, "usb" for any usb-connected device, or "tcp" for
the emulator (must be running). If not specified, the first device found is used.

Examples:

# Install package
${command} ~/projects/packages/com.example.app_1.0_all.ipk

# Remove application
${command} -r com.example.app

# List applications on default device
${command} -l

# List applications on usb-connected device
${command} -d usb -l

# List applications on emulator
${command} -d tcp -l
