Chinaunix首页 | 论坛 | 博客

TGL

  • 博客访问: 44226
  • 博文数量: 12
  • 博客积分: 490
  • 博客等级: 下士
  • 技术积分: 160
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-12 17:07
文章分类
文章存档

2010年(2)

2009年(10)

我的朋友

分类: LINUX

2010-01-20 10:07:05

利用cpio命令来打包和解包

打包前:
$ ls
test
$ cd test/
$ ls
test0  test1  test2  test3  test4  test5  test6  test7  test8  test9
$ cd ..

打包:
$ ls
test
$ find test -type f | cpio -o > test.cpio
259 blocks
$ ls
test  test.cpio

解包:
$ rm -rf test
$ ls
test.cpio
$ cpio -id < test.cpio
259 blocks
$ ls
test  test.cpio
$ cd test
$ ls
test0  test1  test2  test3  test4  test5  test6  test7  test8  test9

比较打包前后的大小:
$ du -h
164K    .
$ ls -lh ../test.cpio
-rw-r--r-- 1 tgl-suse users 130K 2010-01-20 10:01 ../test.cpio
阅读(1530) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~