fpbackup [-m <target>] [-i <timestamp>] File1 File2 ...
It is checked whether the device might be a magnetic tape. If the device name contains
If you give the '-i' option, then the given timestamp file's date is automatically set to now for future usage.
fprestore [-m <source>] [Pattern1 Pattern2]
If you gave a non-rewinding tape device as restore medium, the tape is left at the end of the archive.
If you are restoring from tape, it is not possible to selectively restore files from an archive not at the beginning of the tape. You must first copy the full archive to disk with the 'dd' utility, and then you can selectively restore from disk.
When restoring from standard input, you cannot give file patterns, but must use explicit file names (including the complete pathname).
cd /
fpbackup -m /dev/rmt/0 /usr
cd /
fprestore -m /dev/rmt/0
cd /
fprestore -m /dev/rmt/0 "include/*.h"
cd /tmp
fprestore -m /dev/rmt/0 vi
cd /u/frank
fpbackup -m /tmp/backup .
cd /u/frank
fprestore -m /tmp/backup "*.c"
mkdir /user/frank
cd /user/frank
fprestore -m /tmp/backup
cd /
fpbackup -i /usr/timestamp -m /dev/rmt/0 /usr
cd /
fprestore -m /dev/rmt/0
cd /u/frank
fpbackup -m - . | gzip -9 | dd of=/dev/rmt/0
cd /u/frank
dd if=/dev/rmt/0 | gunzip | fprestore -m -
cd /u/frank
dd if=/dev/rmt/0 | gunzip | fprestore -m - ./1995/fpbackup
cd /u/frank
dd if=/def/rmt/0 | gunzip > /tmp/backup
fprestore -m /tmp/backup "*.c"