You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2025. It is now read-only.
Sean Summers edited this page May 19, 2015
·
1 revision
<connection id="script" driver="script"/>
.... tasks before ...
<script connection-id="script">
java.lang.System.out.println("Try to copy files with Scriptella ....");
java.nio.file.Files.copy(
(new java.io.File("etl/step_3/file_to_copy.db")).toPath(),
(new java.io.File("etl/out/file_to_copy.db")).toPath()
);
</script>
...tasks after...