Add script to copy results from tmp dirs

This commit is contained in:
Louis Lacoste 2026-01-30 14:37:50 +01:00
parent d65dc24b3b
commit 40e1b9386c

3
results/lbm-seq/cp_res.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
find . -regextype awk -regex "./tmp[0-9]*/(para|seq|notrans).Rds" -exec bash -c 'f=${1#./tmp}; cp -v "$1" "./${f//\//_}"' None {} \;