e18cecc3fb
Mostly to move away from unnecessary shortform flags. Using shortform flags for what is roughly an unbounded enum just causes too many flag conflicts as scripts grow: - -r/--read -> --reads - -p/--prog -> --progs - -e/--erase -> --erases - -w/--wear -> --wear - -i/--in-use -> -%/--usage - -M/--mdirs -> --mdirs - -B/--btrees -> --btress - -D/--datas -> --data/--datas I may have had too much fun forcing argparse to make -%/--usage to work. The percent sign caused a lot of problems for argparse internally.