Spaces:
Sleeping
Sleeping
File size: 778 Bytes
ed00004 |
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 |
#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "Usage: $0 [covr|cirr|fiq|all]"
exit 1
fi
case "$1" in
covr)
bash tools/scripts/download_annotation_covr.sh
;;
cirr)
bash tools/scripts/download_annotation_cirr.sh
;;
fiq)
bash tools/scripts/download_annotation_fiq.sh
;;
fashion-iq)
bash tools/scripts/download_annotation_fiq.sh
;;
fashioniq)
bash tools/scripts/download_annotation_fiq.sh
;;
all)
bash tools/scripts/download_annotation_covr.sh
bash tools/scripts/download_annotation_cirr.sh
bash tools/scripts/download_annotation_fiq.sh
;;
*)
echo "Invalid argument. Usage: $0 [covr|cirr|fiq|all]"
exit 1
;;
esac
|