cat [options] [<file_name>] ...
Display help.
Read the files even if they are open exclusively by another process. Runs a small risk of the data read being corrupt.
Similar to --encoding binary
, but in addition sets the console mode to binary (so, for eg, line endings are not translated)
Encoding to use. If not specified, defaults to 'auto'.
Use charconv to try and figure out the encoding (slow and error-prone for anything other than UTF-16 with BOM).
Read the files in binary mode and do not perform any character conversion.
Assume the file is UTF-8 (with or without BOM).
Assume the file is encoded using ISO-8859-1.
Assume the file is UTF-8, but use the RLtkBuf16 UTF-8 parser rather than the charconv one (useful for testing).
Specify the block size to use for reading the file(s), in bytes. If not specified, defaults to 512 bytes.
The names of the files to be concatenated. May contain wild characters *
and ?
. If none specified, reads from stdin
. Can be specified more than once. [filename(s)]
Concatenate the specified files and write their contents to stdout
.
Copyright (c) 2005-2011 Accenture. All rights reserved.