15 lines
306 B
Bash
Executable File
15 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#path='/home/fabris/ongoing_projects/seniority/Manuscript'
|
|
path='/home/fabris/seniority/Manuscript'
|
|
|
|
plots=( plot_pes plot_stat plot_stat_opt plot_distance plot_distance_opt freq freq_opt xe xe_opt plot_pes_HF plot_stat_HF freq_HF )
|
|
|
|
for plot in "${plots[@]}"
|
|
do
|
|
|
|
cp ${plot}.pdf $path/
|
|
|
|
done
|
|
|