-
For the sake of simplicity, let's say we have a similar application named mkdir foo # creates a dir named "foo" The spicy side is that it also creates folders based on some templates: mkdir template foo --name py
# creates foo/__init__.py, including directory The mkdir template It would clash with the subcommand I think. What are your ideas about this? |
Beta Was this translation helpful? Give feedback.
Answered by
ldm0
Feb 4, 2021
Replies: 1 comment 1 reply
-
If you want to provide template as an arg, use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
erayerdin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to provide template as an arg, use
mkdir -- template
.