You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
268 B
17 lines
268 B
#!/bin/bash
|
|
source testlist
|
|
delay=1
|
|
count=0
|
|
|
|
while [ "x${coinlist[count]}" != "x" ]
|
|
do
|
|
all=${coinlist[count]}
|
|
name=${all%% *}
|
|
if [ "$name" != "" ]
|
|
then
|
|
echo $name
|
|
komodo-cli -ac_name=$name $*
|
|
sleep $delay
|
|
fi
|
|
count=$(( $count +1 ))
|
|
done
|
|
|