xorrisofs: ExGraft

 
 6.2 Set ISO image paths by -graft-points
 ========================================
 
 Without option -graft-points each given disk file is copied into the
 root directory of the ISO image, maintaining its name.  If a directory
 is given, then its files and sub-directories are copied into the root
 directory, maintaining their names.
 
    $ xorrisofs ...  /home/me/datafile /tmp/directory
 
    yields in the ISO image root directory:
 
    /datafile
 /file_1_from_directory
 ...
 /file_N_from_directory
 
    With option -graft-points it is possible to put files and directories
 to arbitrary paths in the ISO image.
 
    $ xorrisofs ...  -graft-points /home/me/datafile /dir=/tmp/directory
 
    yields in the ISO image root directory:
 
    /datafile
 /dir
 
    Eventually needed parent directories in the image will be created
 automatically:
 
    /datafiles/file1=/home/me/datafile
 
    yields in the ISO image:
 
 
    /datafiles/file1
 
    The attributes of directory /datafiles get copied from /home/me on
 disk.
 
    Normally one should avoid = and \ characters in the ISO part of a
 pathspec.  But if it must be, one may escape them:
 
 
    /with_\=_and_\\/file=/tmp/directory/file
 
    yields in the ISO image:
 
    /with_=_and_\/file