EFUN cat() SYNOPSIS int cat(string full_path, int start, int number_of_lines) DESCRIPTION List the file found at <full_path>. It is not legal to have '.' or spaces in the path. This command is normally connected to the "cat" command that wizards have. It is also used by the "help", "more" command. The optional arguments <start> and <number_of_lines> makes is start line number, and number of lines. If they are not given, the whole file is printed from the beginning. The total number lines will not exceed a system limit, which normally is 40 lines. cat() returns 1 if success, 0 if no such file, invalid access or no such lines. EXAMPLE void show_welcome() { cat("/info/WELCOME"); } SEE ALSO tail(), read_file(), read_bytes().