Problem
tabcmd Classic syntax: tabcmd delete --workbook "WorkbookName" (flag takes the name as its value)
tabcmd 2 syntax: tabcmd delete "WorkbookName" --workbook (name is positional, --workbook/--datasource is a type-selector flag)
Any script written against tabcmd Classic will either fail with a parse error or silently do the wrong thing when run against tabcmd 2.
Expected behavior
tabcmd 2 should accept the Classic syntax --workbook NAME / --datasource NAME in addition to (or instead of) the current positional syntax, so existing scripts continue to work.
Problem
tabcmd Classic syntax:
tabcmd delete --workbook "WorkbookName"(flag takes the name as its value)tabcmd 2 syntax:
tabcmd delete "WorkbookName" --workbook(name is positional,--workbook/--datasourceis a type-selector flag)Any script written against tabcmd Classic will either fail with a parse error or silently do the wrong thing when run against tabcmd 2.
Expected behavior
tabcmd 2 should accept the Classic syntax
--workbook NAME/--datasource NAMEin addition to (or instead of) the current positional syntax, so existing scripts continue to work.