view more/test.sh @ 1245:313a2569dfe2

Milton Miller pointed out that tar | tar doesn't need gzip. :)
author Rob Landley <rob@landley.net>
date Sun, 12 Sep 2010 18:05:42 -0500
parents 300e6d919d86
children 3e7bf55b1bfb
line wrap: on
line source

#!/bin/bash

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

if [ $# -eq 0 ]
then
  echo "Usage: test.sh ARCH COMMAND..." >&2
  echo "You generally want to set STAGE_NAME= too."
  exit 1
fi

. sources/include.sh || exit 1

read_arch_dir "$1"
shift
eval "$@"