-
Notifications
You must be signed in to change notification settings - Fork 56
/
all_upload.sh
23 lines (20 loc) · 859 Bytes
/
all_upload.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
array=()
array+=("001demo_bodypix-worker-js-demo")
array+=("002demo_facemesh-worker-js-demo")
array+=("003demo_ascii-worker-js-demo")
array+=("004demo_opencv-worker-js-demo")
array+=("005demo_posenet-worker-js-demo")
array+=("006demo_handpose-worker-js-demo")
array+=("007demo_white-box-cartoonization-worker-js-demo")
array+=("008demo_bisenetv2-celebamask-worker-js-demo")
array+=("009demo_u2net-portrait-worker-js-demo")
array+=("010demo_modnet-worker-js-demo")
array+=("011demo_googlemeet-segmentation-worker-js-demo")
array+=("012demo_barcode-scanner-worker-js-demo")
array+=("013demo_super-resolution-worker-js-demo")
for i in "${array[@]}"
do
echo "==================== START uploading..." ${i} " ============================="
sh upload.sh ${i}
echo "==================== END uploading..." ${i} " ============================="
done