recompress.c
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /* Pretty generic file recompressor - it only insists on the decompressor
  2.  * accepting the "-c" flag to decompress to stdout, which works for
  3.  * gunzip, uncompress, bunzip2, tunzip, and more.
  4.  * Intended as a future replacement for gzip2cmp.c
  5.  */
  6. /****************************************************************************  
  7.  
  8.   Copyright (c) 1999 WU-FTPD Development Group.  
  9.   All rights reserved.
  10.   
  11.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  12.     The Regents of the University of California.
  13.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  14.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  15.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  16.   Portions Copyright (c) 1998 Sendmail, Inc.
  17.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  18.   Portions Copyright (c) 1997 by Stan Barber.
  19.   Portions Copyright (c) 1997 by Kent Landfield.
  20.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  21.     Free Software Foundation, Inc.  
  22.  
  23.   Use and distribution of this software and its source code are governed 
  24.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  25.  
  26.   If you did not receive a copy of the license, it may be obtained online
  27.   at http://www.wu-ftpd.org/license.html.
  28.  
  29.   $Id: recompress.c,v 1.2 1999/09/30 00:57:55 wuftpd Exp $
  30.  
  31. ****************************************************************************/
  32. #include <stdio.h>
  33. /* Some odd systems like SunOS don't have basename :/ */
  34. #define lbasename(x) (strrchr(x,'/')?1+strrchr(x,'/'):x)
  35. main(ac, av)
  36.      int ac;
  37.      char **av;
  38. {
  39.     char *zipfile;
  40.     int fd[2];
  41.     switch (ac) {
  42.     case 4:
  43. zipfile = av[3];
  44. break;
  45.     case 3:
  46. zipfile = NULL;
  47. break;
  48.     default:
  49. fputs("usage: recompress decompressor compressor [file]", stderr);
  50. fputs("       Example: recompress /bin/uncompress /bin/gzip [file]", stderr);
  51. exit(1);
  52.     }
  53.     if (pipe(fd) < 0) {
  54. perror("pipe");
  55. exit(1);
  56.     }
  57.     switch (fork()) {
  58.     default: /* the father */
  59. if (dup2(fd[0], 0) < 0) {
  60.     perror("parent: dup2");
  61.     exit(1);
  62. }
  63. close(fd[1]);
  64. execlp(av[2], lbasename(av[2]), NULL);
  65. perror("execlp: compressor");
  66. exit(1);
  67.     case 0: /* the son */
  68. if (dup2(fd[1], 1) < 0) {
  69.     perror("child: dup2");
  70.     exit(1);
  71. }
  72. close(fd[0]);
  73. execlp(av[1], lbasename(av[1]), "-c", zipfile, NULL);
  74. perror("execlp: uncompressor");
  75. exit(1);
  76.     case -1: /* Murphy's ghost */
  77. perror("fork");
  78. exit(1);
  79.     }
  80. }