github.com/tenywen/fabric@v1.0.0-beta.0.20170620030522-a5b1ed380643/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