docker-erpnext/try.sh
chendelin1982 f20d3d4048 started
2022-10-24 14:30:54 +08:00

10 lines
183 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
LISTS=($(gh issue list --state all))
echo "size: ${#LISTS[*]}"
#注意index从0开始以size-1结尾
for(( i=0;i<${#LISTS[*]};i++)) do {
echo ${LISTS[i]}
}&
done;