view more/for-each-target.sh @ 1239:da970a892641

Helps to get the version numbers right in the release message. (It was pending for a while, things moved while writing up the release notes rather a lot.)
author Rob Landley <rob@landley.net>
date Mon, 06 Sep 2010 00:57:38 -0500
parents 300e6d919d86
children dadbb8873a36
line wrap: on
line source

#!/bin/bash

# Iterate through every target architecture, running rest of command line
# on each $TARGET.

# If $FORK is set, run them in parallel with filtered output.

. sources/functions.sh || exit 1

[ -z "${ARCHES}" ] &&
  ARCHES="$(cd sources/targets/; ls | grep -v '^hw-')"

for TARGET in $ARCHES
do
  maybe_fork "$* | maybe_quiet"
done

wait