view more/test.sh @ 1356:5198cfb8e368

Cosmetic tweak to miniconfig script.
author Rob Landley <rob@landley.net>
date Sat, 21 May 2011 23:38:59 -0500
parents 3e7bf55b1bfb
children b74d36876c0a
line wrap: on
line source

#!/bin/bash

# Run a command with sources/include.sh and an architecture loaded

if [ $# -eq 0 ]
then
  echo "Usage: [STAGE_NAME=...] more/test.sh ARCH COMMAND..." >&2
  exit 1
fi

. sources/include.sh || exit 1

read_arch_dir "$1"
shift
eval "$@"