1BEGIN {
2	for (i = 1; i < ARGC; i++)
3		printf "%s ", ARGV[i]
4	printf "\n"
5	exit
6}
7