Script started on Fri 27 Oct 2006 02:35:54 PM PDT bash-3.1$ ls file-and-funcs.c lec13.txt nums.txt bash-3.1$ cat nums.txt 1 2 3 4 5 6 7 bash-3.1$ gcc -g -Wall -std=c99 -o test file-and-funcs.c bash-3.1$ ./test nums.txt out.txt bash-3.1$ ls file-and-funcs.c lec13.txt nums.txt out.txt test bash-3.1$ cat out.txt 6 7 8 9 10 11 12 bash-3.1$ exit exit Script done on Fri 27 Oct 2006 03:21:35 PM PDT