comparison cutils/treesum.py @ 136:db4fd1f64538

"-l" is now the sort form of "--follow-directory-symlinks"
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 02 Jan 2025 23:15:55 +0100
parents dbf27681a1f6
children 69f8a3db8fbd
comparison
equal deleted inserted replaced
135:dbf27681a1f6 136:db4fd1f64538
48 aparser.add_argument( 48 aparser.add_argument(
49 "--comment", action="append", default=[], 49 "--comment", action="append", default=[],
50 help="Put given comment COMMENT into the output as \"COMMENT\"." 50 help="Put given comment COMMENT into the output as \"COMMENT\"."
51 " Can be given more than once.") 51 " Can be given more than once.")
52 aparser.add_argument( 52 aparser.add_argument(
53 "--follow-directory-symlinks", action="store_true", 53 "--follow-directory-symlinks", "-l", action="store_true",
54 dest="follow_directory_symlinks", 54 dest="follow_directory_symlinks",
55 help="Follow symbolic links to directories when walking a directory" 55 help="Follow symbolic links to directories when walking a directory"
56 " tree. Note that this is different from using \"--logical\" or" 56 " tree. Note that this is different from using \"--logical\" or"
57 " \"--physical\" for arguments given directly on the command" 57 " \"--physical\" for arguments given directly on the command"
58 " line") 58 " line")