|
NAMEFTimesXpa - Create a cross-platform archive.SYNOPSISftimes-xpa {-a|--archive} [{-b|--blocksize} bytes] [{-l|--list} {file|-}] -- [target [...]]ftimes-xpa {-v|--version} DESCRIPTIONThe FTimesXpa utility reads one or more files specified in a list or on the command line and creates a cross-platform archive, which is written to stdout. Each specified filename is assumed to be encoded (i.e., neutered by FTimes), and it is automatically decoded to obtain the real name, which may contain special characters. For WINX platforms, the decoded name is assumed to be a UTF-8 string.MODES OF OPERATIONThe modes of operation described in this section are mutually exclusive. In other words, only one mode may be specified per invocation.
RETURN VALUESUpon successful completion, a value of 0 (XER_OK) is returned. Otherwise, one of the following error codes is returned:
EXAMPLESExample 1. Standard operationThis example demonstrates how to create a cross-platform archive of a file with a neutered name. In this case, the name contains space and newline characters.ftimes-xpa --archive -- name+with+spaces%0aand%0anewlines > out.xpa Such a file can be created with the following Perl one-liner: perl -e 'open(F, ">name with spaces\nand\nnewlines"); print F "jinx\n";' Example 2. Standard operation with input from stdinThis example demonstrates how to create a cross-platform archive from a list of files passed on stdin. The list for stdin will be generated by ftimes(1).ftimes --mapauto none -l 6 *.o | ftimes-xpa --archive --list - > out.xpa Example 3. Files with alternate data streamsThis example demonstrates how to create a cross-platform archive of an alternate data stream called 'ads1'.ftimes-xpa --archive -- some-file-with-a-stream:ads1 If you believe a file contains an alternate data stream, you can use ftimes(1) to determine its name as follows: ftimes --mapauto none -l 6 some-file-with-a-stream Note that alternate data streams are specific to WINX platforms and NTFS. SEE ALSOftimes(1)AUTHORKlayton MonroeHISTORYThis utility was initially written to support a forensic gig where we needed to create cross-platform archives with built-in integrity attributes that could be streamed over the network (e.g., via SSH). We also needed to harvest alternate data streams and handle files with awkward or mischievous names (i.e., names requiring special handling to prevent terminal rendering issues and errors in various tools and shell scripts).This utility first appeared in FTimes 3.9.0.
Visit the GSP FreeBSD Man Page Interface. |