2020-08-17 17:14:58 +00:00
|
|
|
#!/bin/bash
|
2020-08-18 12:58:47 +00:00
|
|
|
|
|
|
|
# call me from parent directory
|
|
|
|
|
2020-08-17 17:14:58 +00:00
|
|
|
for I in job_similarities_*.csv ; do
|
2020-08-18 12:58:47 +00:00
|
|
|
./scripts/plot.R $I > description.txt
|
2020-08-17 17:14:58 +00:00
|
|
|
mkdir $I.out
|
|
|
|
rm $I.out/*
|
2020-08-18 10:54:57 +00:00
|
|
|
mv *.png *.pdf description.txt $I.out
|
2020-08-17 17:14:58 +00:00
|
|
|
done
|