From 54c794f3d232673758d5576b47c554d697fb8d2f Mon Sep 17 00:00:00 2001 From: Martin Schroschk <martin.schroschk@tu-dresden.de> Date: Wed, 31 Aug 2022 14:08:16 +0200 Subject: [PATCH] Add comment on saving results in examples --- doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md index f31e10923..8e7da9b49 100644 --- a/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md +++ b/doc.zih.tu-dresden.de/docs/data_lifecycle/workspaces.md @@ -257,6 +257,7 @@ calling the actual software to do your computation). # Adjust the following line to invoke the program you want to run srun name_of_the_program_you_want_to_run_here < "${INPUTFILE}" > logfile.log + # Save result files into user home # Compress results with bzip2 (which includes CRC32 Checksums) bzip2 --compress --stdout -4 "${WORKSPACE_DIR}" > $HOME/gaussian_job-$SLURM_JOB_ID.bz2 RETURN_CODE=$? -- GitLab