mkdir during put/tee? #1096
Answered
by
srstsavage
srstsavage
asked this question in
Q&A
|
Hi, does anyone know of a performant way to create directories while using put/tee? The following completes in about 1 second. But this takes over a minute. |
Answered by
srstsavage
Sep 25, 2022
Replies: 2 comments
|
Actually, doing directory creation as a separate first step seems to be the way to go. Both of these complete in less than a second: I am curious if it's possible to do this in a single step with |
0 replies
Answer selected by
srstsavage
|
@shane-axiom sounds great to me! :) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actually, doing directory creation as a separate first step seems to be the way to go. Both of these complete in less than a second:
I am curious if it's possible to do this in a single step with
tee, but the two-step approach is perfectly acceptable.