_3build.sh 177 B

12345678910
  1. #!/bin/bash
  2. # Check if an argument is provided
  3. if [ -z "$1" ]; then
  4. echo "Usage: $0 <arg1>"
  5. exit 1
  6. fi
  7. # Pass the argument to build.sh
  8. sh ./l3-LOCAL_BALANCER/build.sh "$1"