rpm2tgz脚本

rpm2tgz脚本
放在/usr/local/bin下,挺好用
  # !/bin/sh
 # this script converts an rpm into a plain tarball

  mkdir  $$ . cpio
 rpm2cpio $@ 
>  $$ . cpio / foo
 cd $$
. cpio
 cpio 
- - - <  foo
 rm 
- f foo
 find 
.   - type d  - perm  700   - exec   chmod   755  {}  \ ;
 tar cvzf 
../ `basename $@  . rpm` . tar . gz  .
 cd 
../
 rm 
- rf $$ . cpio


你可能感兴趣的:(rpm2tgz脚本)