[ 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.
$ find ./ -print | cpio -o -Hnewc | gzip > /tmp/my.cpio.gz

Wish this helps.

regards,
Stanley Huang

Comments

Popular posts from this blog

[Level 2] Shell Interactive With Zenity Episode 5 -- list

[Level 2] iif in Python