github.com/kchristidis/fabric@v1.0.4-0.20171028114726-837acd08cde1/scripts/infiniteloop.sh (about) 1 #!/bin/bash 2 # 3 # Copyright IBM Corp. All Rights Reserved. 4 # 5 # SPDX-License-Identifier: Apache-2.0 6 # 7 8 # Use this script as the command for the cli Docker container 9 # in the compose-consensus-4 set. It keeps the container up while we wait for other setup to complete 10 11 set -e 12 13 while true 14 do 15 echo "ttd" 16 sleep 10m 17 done