unbz64wrap
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # unbz64wrap - the receiving side of a bzip2 | base64 stream
  3. # Andreas Dilger <adilger@clusterfs.com>   Jan 2002
  4. # Sadly, mimencode does not appear to have good "begin" and "end" markers
  5. # like uuencode does, and it is picky about getting the right start/end of
  6. # the base64 stream, so we handle this explicitly here.
  7. PATH=$PATH:/usr/bin:/usr/local/bin:/usr/freeware/bin
  8. if mimencode -u < /dev/null > /dev/null 2>&1 ; then
  9. SHOW=
  10. while read LINE; do
  11. case $LINE in
  12. begin-base64*) SHOW=YES ;;
  13. ====) SHOW= ;;
  14. *) [ "$SHOW" ] && echo "$LINE" ;;
  15. esac
  16. done | mimencode -u | bunzip2
  17. exit $?
  18. else
  19. cat - | uudecode -o /dev/stdout | bunzip2
  20. exit $?
  21. fi