#!/bin/sh

shift
if [ $# -gt 1 ]; then
  mwld -o $* -xml -export all -sym full
else
  echo ar: not enough parameters
  exit 1
fi

