Re: Task Scheduler - GET and MOVE
It should be
Though note that your script is not transactionally safe. If a new file appears after
For a translatioanlly safe solution see https://stackoverflow.com/q/48311614/850848
mv file-int-*.mp /old/
Though note that your script is not transactionally safe. If a new file appears after
get
starts, but before mv
, it won't be downloaded, but will be moved.
For a translatioanlly safe solution see https://stackoverflow.com/q/48311614/850848