[ Level 1 ] create cpio file with find.
Cpio is a good tool to pack files in one image, and it's fast.
You could use find command to find files that you want and also use gzip to compress it.
ex.
Wish this helps.
regards,
Stanley Huang
You could use find command to find files that you want and also use gzip to compress it.
ex.
$ find ./ -print | cpio -o -Hnewc | gzip > /tmp/my.cpio.gz
Wish this helps.
regards,
Stanley Huang
Comments
Post a Comment