What's the best way to execute a command after the post download is complete? #714
Answered
by
Serene-Arc
rupinderjeet
asked this question in
Q&A
-
I am interested in archive-files: I want to execute a command after a post is downloaded. For example: on_downloaded:
json:
command: 'chflags hidden {JSON_FILE_PATH}' |
Beta Was this translation helpful? Give feedback.
Answered by
Serene-Arc
Dec 12, 2022
Replies: 1 comment
-
The BDFR is always (afaik) called within a shell, such as the bash shell or Powershell. These already contain options to link commands together and run them conditionally one after the other through operators such as This. functionality would be outside the scope of the BDFR anyway. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rupinderjeet
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The BDFR is always (afaik) called within a shell, such as the bash shell or Powershell. These already contain options to link commands together and run them conditionally one after the other through operators such as
;
and&&
.This. functionality would be outside the scope of the BDFR anyway.