Skip to content

Commit

Permalink
data handling
Browse files Browse the repository at this point in the history
  • Loading branch information
hmeiland committed Dec 21, 2023
1 parent 6db9111 commit 5f42187
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions data.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
## sbatch --wrap "hostname"

For the most simple command-line job, not data is transferred from the submit host to the cluster.
The wrapped command is forwarded and the standard-out is captured in the job output std_log.txt file which can be found in the "Outputs and log" tab of the job.
Any files created in the `outputs` folder of the work-dir are also captured by the job and can be found in the same tab.
The wrapped command is forwarded and the standard-out is captured in the job output `std_log.txt` file which can be found in the `Outputs and log` tab of the job.
Any files created in the `./outputs` folder of the workdir are also captured by the job and can be found in the same tab.

## sbatch ./runscript.sh

For a job which is described in a `runscript.sh` (or any other filename), the `runscript.sh` (and only the runscript.sh) is copied into the job and can be found in the `Code` tab of the job.
During the job preparation it is copied into the workdir, and since the command points to this script, it will be executed.
Any files created in the `./outputs` folder of the workdir are also captured by the job and can be found in the same tab.

0 comments on commit 5f42187

Please sign in to comment.