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.
18 lines
268 B
18 lines
268 B
7 years ago
|
#!/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
|