-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdecode-flp.sh
More file actions
executable file
·35 lines (35 loc) · 1.25 KB
/
decode-flp.sh
File metadata and controls
executable file
·35 lines (35 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env bash
#
# Execute the scripts whose skeleton was created
# by create-decode-scripts-skeleton.sh
#
echo "***********************"
echo "Decoding noise scan"
echo "***********************"
./decode-noise-scan.sh
echo
echo "**********************************************"
echo "Decoding source long scan without back-bias"
echo "**********************************************"
./decode-source-long-scan-nobb.sh
echo
echo "**********************************************"
echo "Decoding source long scan with back-bias"
echo "**********************************************"
./decode-source-long-scan-wbb.sh
# echo
# echo "**********************************************"
# echo "Decoding source short scan with low intensity"
# echo "**********************************************"
# ./decode-source-short-scan-low-intensity.sh
# echo
# echo "**********************************************"
# echo "Decoding source long scan with low intensity"
# echo "**********************************************"
# ./decode-source-long-scan-low-intensity.sh
# echo
# echo "**********************************************"
# echo "Decoding source short scan with high intensity"
# echo "**********************************************"
# ./decode-source-short-scan-high-intensity.sh
echo