mirror of
https://git.hush.is/hush/hush3.git
synced 2025-09-25 00:04:03 -04:00
9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
komodo_cli='./komodo-cli'
|
|
|
|
./listassetchains | while read chain; do
|
|
$komodo_cli --ac_name=$chain stop
|
|
done
|