mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 04:43:53 +00:00
This was a seperate repository in CVS and so it missed the conversion.
benchmarks/
As above.
23 lines
515 B
Bash
23 lines
515 B
Bash
#!/bin/sh
|
|
icfpaddress=icfp-sub@cs.cornell.edu
|
|
icfpsubject="ICFPsubmission"
|
|
|
|
infofile=$1
|
|
submissionfile=$2
|
|
|
|
## data must be valid rfc822 headers
|
|
## do not add white space to the beginning of lines
|
|
echo sending submission
|
|
cat ${infofile}
|
|
metasend -b -S 2200000 \
|
|
-t ${icfpaddress} \
|
|
-s ${icfpsubject} \
|
|
-f ${infofile} \
|
|
-e 7bit \
|
|
-m text/plain \
|
|
-n \
|
|
-f ${submissionfile} \
|
|
-e base64 \
|
|
-m application/octet-stream
|
|
|