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