Top
||
Section Contents
||
Permuted Index
SavaJe OS
1.1.0
cat copy a file to standard output
cat [-b] [files...] [URLs...]
Copy the contents of each of the named files or URLs to the standard output.
If more than one file is specified they are copied one after the
other. The -b
option causes files to be treated as binary files.
% cat alias.txt
Copy the file alias.txt
to standard output.
% cat http://www.savaje.com/index.html > /cf0/web.txt
Download and save the text of a web page.
% cat -b http://myserver/App.class > App.class
Download and save a class file.