tail - print part of a file
/testbin/tail file location
tail prints the contents of a file starting at offset location within it, skipping the beginning.
It is somewhat similar in concept to the Unix tail command, but is not compatible, which is why it lives in testbin.
tail uses the following system calls:
tail should work once the basic system calls are complete, but will probably be most useful as a debugging tool while working on the file system.