Skip to content
Snippets Groups Projects
Commit d4e40837 authored by Simon Michnowicz's avatar Simon Michnowicz
Browse files

added specifi file deletion for strudel

parent 2de17d14
No related branches found
No related tags found
1 merge request!4added conditionals to prevent installation if drivers already present (Note, tested only on redhat)
#!/bin/sh
find /tmp -user ${SLURM_JOB_USER} | xargs rm -rf
# specific files to be deleted to clean up after a Strudel session
find /tmp -user ${SLURM_JOB_USER} -name "pulse*" | xargs rm -rf
find /tmp -user ${SLURM_JOB_USER} -name ".esd-*" | xargs rm -rf
find /tmp -user ${SLURM_JOB_USER} -name ".X*-lock" | xargs rm -rf
find /tmp/.X11-unix -user ${SLURM_JOB_USER} -name "X*" | xargs rm -rf
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment