#!/bin/bash set -euo pipefail if ! pgrep -f ssh-agent >/dev/null; then echo "Start ssh-agent first:" echo 'eval $(ssh-agent) && rad auth --alias liw-other' exit 1 fi rad node start -- --listen 0.0.0.0:8776 git init liw-test2 cd liw-test2 echo foo >foo git add foo git commit -m foo rad init --name=liw-test2 \ --no-confirm \ --description=test \ --public \ --scope=all \ --default-branch=main \ --no-confirm \ . rad .