summaryrefslogtreecommitdiff
path: root/mat-cli
diff options
context:
space:
mode:
Diffstat (limited to 'mat-cli')
-rwxr-xr-xmat-cli6
1 files changed, 3 insertions, 3 deletions
diff --git a/mat-cli b/mat-cli
index 804c4cf..c0f2d72 100755
--- a/mat-cli
+++ b/mat-cli
@@ -20,11 +20,11 @@ def parse():
20 ''' 20 '''
21 parser = optparse.OptionParser(usage='%prog [options] files') 21 parser = optparse.OptionParser(usage='%prog [options] files')
22 parser.add_option('--add2archive', '-a', action='store_true', 22 parser.add_option('--add2archive', '-a', action='store_true',
23 default=False, help='Add to outputed archive non-supported filetypes') 23 default=False, help='Add to output archive non-supported filetypes')
24 parser.add_option('--backup', '-b', action='store_true', default=False, 24 parser.add_option('--backup', '-b', action='store_true', default=False,
25 help='Keep a backup copy') 25 help='Keep a backup copy')
26 parser.add_option('--check', '-c', action='store_true', default=False, 26 parser.add_option('--check', '-c', action='store_true', default=False,
27 help='Check if a file is free of harmfull metadatas') 27 help='Check if a file is free of harmful metadatas')
28 parser.add_option('--display', '-d', action='store_true', default=False, 28 parser.add_option('--display', '-d', action='store_true', default=False,
29 help='List all the meta of a file without removing them') 29 help='List all the meta of a file without removing them')
30 parser.add_option('--force', '-f', action='store_true', default=False, 30 parser.add_option('--force', '-f', action='store_true', default=False,
@@ -32,7 +32,7 @@ def parse():
32 parser.add_option('--list', '-l', action='store_true', default=False, 32 parser.add_option('--list', '-l', action='store_true', default=False,
33 help='List all supported fileformat') 33 help='List all supported fileformat')
34 parser.add_option('--ugly', '-u', action='store_true', default=False, 34 parser.add_option('--ugly', '-u', action='store_true', default=False,
35 help='Remove harmful meta, but loss can occure') 35 help='Remove harmful meta, but loss can occur')
36 parser.add_option('--version', '-v', action='callback', 36 parser.add_option('--version', '-v', action='callback',
37 callback=display_version, help='Display version and exit') 37 callback=display_version, help='Display version and exit')
38 38