parser.add_argument("-lo","--library-only","--libraries-only",dest="library_only",help="Run only library operations",action="store_true",default=False)
parser.add_argument("-rc","-cl","--collection","--collections","--run-collection","--run-collections",dest="collections",help="Process only specified collections (comma-separated list)",type=str)
parser.add_argument("-rl","-l","--library","--libraries","--run-library","--run-libraries",dest="libraries",help="Process only specified libraries (comma-separated list)",type=str)
parser.add_argument("-nc","--no-countdown",dest="no_countdown",help="Run without displaying countdown",action="store_true",default=False)
parser.add_argument("-d","--divider",dest="divider",help="Character that divides the sections (Default: '=')",default="=",type=str)