DonovanWu / konsoru

A functional programming styled CLI console application framework based on argparse.
MIT License
0 stars 0 forks source link

Support **kwargs and bash argument expansion #1

Open DonovanWu opened 5 years ago

DonovanWu commented 5 years ago

Suggestions:

  1. Parse **kwargs as unknown args, but details on handling and whether this option brings too much confusion is subject to further discussion...
  2. Support more bash argument expansion such as {1..5}, {a,b,c}, but needs to prevent bash command substitution using $() and ``, or we can just allow any bash commands. How to handle it is subject to further discussion.