Backup using cpio
Backup:
find tests/ -depth -print | cpio -oaV | ssh bednarek@beo01 'cpio -imVd'
Restoring backup:
ssh bednarek@beo01 “find tests/ -depth -print |cpio -oaV” | cpio -imVd
Trace: » cpio
Backup using cpio
Backup:
find tests/ -depth -print | cpio -oaV | ssh bednarek@beo01 'cpio -imVd'
Restoring backup:
ssh bednarek@beo01 “find tests/ -depth -print |cpio -oaV” | cpio -imVd