Files
mercury/tools/half
Zoltan Somogyi b221d25b52 <overview or general description of changes>
Estimated hours taken: 1

<overview or general description of changes>

<directory>/<file>:
	<detailed description of changes>
1996-05-13 05:10:23 +00:00

11 lines
173 B
Bash
Executable File

#!/bin/sh
# Given N arguments, print the first N/2 arguments, rounding down.
take=`expr $# / 2`
while test $take -gt 0
do
echo -n "$1 "
shift
take=`expr $take - 1`
done