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
312 B
17 lines
312 B
7 years ago
|
#!/bin/bash
|
||
|
declare -a skip=("BEER" "PIZZA")
|
||
|
args="${@}"
|
||
|
delay=0.5
|
||
|
|
||
|
~/komodo/src/listassetchains | while read chain; do
|
||
|
if [[ " ${skip[@]} " =~ " ${chain} " ]]; then
|
||
|
pointless=0
|
||
|
else
|
||
|
echo $chain
|
||
|
komodo-cli -ac_name=$chain $args
|
||
|
sleep $delay
|
||
|
fi
|
||
|
done
|
||
|
echo VRSC
|
||
|
komodo-cli -ac_name=VRSC $args
|