diff --git a/keychaineditor.deb b/keychaineditor.deb index 14c74fb..b6c0e8f 100644 Binary files a/keychaineditor.deb and b/keychaineditor.deb differ diff --git a/keychaineditor/usr/local/bin/keychaineditor b/keychaineditor/usr/local/bin/keychaineditor index b652a91..eaa3e17 100755 Binary files a/keychaineditor/usr/local/bin/keychaineditor and b/keychaineditor/usr/local/bin/keychaineditor differ diff --git a/src/main.swift b/src/main.swift index f5b7d74..05ed1e8 100644 --- a/src/main.swift +++ b/src/main.swift @@ -10,7 +10,12 @@ func printUsage() { print("NOTES:") print(" * Account and Service names are used to uniquely identify a item. An optional AccessGroup can also be passed to identify the item.") print(" * If there is no Account name pass an empty string.") - print(" * Search is from the following group {Account, Service, AccessGroup, Protection}") + print(" * Search is from the following group {Account, Service, AccessGroup, Protection} and is case in-sensitive.") + print("EXAMPLES:") + print(" * To Dump entire keychain: $ keychaineditor") + print(" * Limit dump by searching: $ keychaineditor -f 'test'") + print(" * Edit a keychain item: $ keychaineditor -e --account 'TestAccount' --service 'TestService' --data 'TestData'") + print(" * Delete a keychain item: $ keychaineditor -d --account 'TestAccount' --service 'TestService'") exit(EXIT_FAILURE) }