Updated CLI usage examples...

pull/157/head
mbusb 7 years ago
parent b3f83e08f0
commit 73f3799024

@ -37,9 +37,10 @@ def usage():
print('\n Usage: python3 multibootusb [option(s)]\n')
print(' Options:\n')
print(' -h or --help : Print this help message and exit')
print(' -i or --iso : Path to ISO file')
print(' -i or --iso : Path to ISO file()s. If may ISOs are supplied, it should be seperated by \',\' and no space is allowed between ISOs.')
print(' -t or --target : Path to target USB device partition (example /dev/sdb1)')
print(' -c or --command : Invoke command line usage. This option is must')
print(' -y or --yes : Default yes for user input during install. Will not wait for user')
print(' -u or --uninstall : List and uninstall distro from an USB disk')
print(' -d or --debug : Enable debug messages (very verbose!)\n')
print(' Eexample for making a bootable USB from command line should look like this:\n')
@ -48,6 +49,9 @@ def usage():
print(' Example for uninstalling distro from an USB should look like this:\n')
print('\tpython3 multibootusb -c -u -t /dev/sdb1 on Linux and \n')
print('\tpython3 multibootusb -c -u -t G: on Windows\n')
print(' Example for installing multiple distro without user intervention look like this:\n')
print('\tpython3 multibootusb -c -y -i ../../favourite.iso,../../other-distro.iso -t /dev/sdb1 on Linux and \n')
print('\tpython3 multibootusb -c -i ../../favourite.iso,../../other-distro.iso -t G: on Windows\n')
exit(2)

Loading…
Cancel
Save