13 lines
221 B
Bash
Executable File
13 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Single letters:
|
|
python prep_landmarks_binary.py --letter A
|
|
# etc for B-Z
|
|
|
|
# OR all letters at once:
|
|
# for L in {A..Z}; do
|
|
# python prep_landmarks_binary.py --letter "$L"
|
|
# done
|
|
|