Skip to content

Commit 65c097e

Browse files
committed
add script to run run_plot.sh
1 parent 4eb215c commit 65c097e

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

create-plot-scripts-skeleton.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
# Copy and execute this script from /home/flp/data
3+
#
4+
# It will create skeleton of bash scripts to run the
5+
# plot script for the listed files.
6+
# Each obtained .sh file is chmod+x so they can be executed
7+
# via plot-flp.sh
8+
# Edit the skeleton script to make them run (remowe
9+
# .raw at the end of each file name)
10+
ls -1 data-2021_03_10__16_59_27__-20* | awk '{print "./run_plot.sh "$1" /home/flp/data/digits /home/flp/plots"}' > ~/alice/decoding-scripts/plot-noise-scan.sh
11+
ls -1 data-2021_03_10__17_38_49__-20* | awk '{print "./run_plot.sh "$1" /home/flp/data/digits /home/flp/plots"}' > ~/alice/decoding-scripts/plot-source-short-scan-low-intensity.sh
12+
ls -1 data-2021_03_10__18_03_41__-20* | awk '{print "./run_plot.sh "$1" /home/flp/data/digits /home/flp/plots"}' > ~/alice/decoding-scripts/plot-source-long-scan-low-intensity.sh
13+
ls -1 data-2021_03_10__18_23_15__-20* | awk '{print "./run_plot.sh "$1" /home/flp/data/digits /home/flp/plots"}' > ~/alice/decoding-scripts/plot-source-short-scan-high-intensity.sh
14+
chmod u+x ~/alice/decoding-scripts/*.sh

0 commit comments

Comments
 (0)