mtt_xargs.sh 59 B

12345678
  1. #! /bin/sh
  2. cmd=$1
  3. for arg in $2; do
  4. eval $cmd $arg
  5. done