#!/bin/bash# execute nsh_sfc bootstrap script if it existsif[ ! -e bootstrap-verify-perf-nsh_sfc.sh ]thenecho'ERROR: No bootstrap-verify-perf-nsh_sfc.sh found'exit1fi# make sure that bootstrap-verify-perf.sh is executable
chmod +x bootstrap-verify-perf-nsh_sfc.sh
# run the script
./bootstrap-verify-perf-nsh_sfc.sh
# vim: ts=4 ts=4 sts=4 et :