rename.unix
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:1k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. #!/bin/sh
  2. # Info-ZIP script tandem/rename.unix for UnZip 5.32 and later
  3. #
  4. # This script should be run on a Unix system in order to rename appropriately
  5. # the source files required for the Tandem port.  Note that the source files
  6. # should have DOS-style line-endings (CR/LF), which can be accomplished by
  7. # archiving them with "zip -l" and unarchiving with "unzip -b", or by ftp'ing
  8. # them to the Tandem system in ASCII mode.
  9. MV="/bin/mv"
  10. #MV="/bin/cp -p"
  11. if [ -d tandem ]; then
  12.     cd tandem
  13. fi
  14. if [ -f tandemc ]; then
  15.     echo "error:  tandemc already exists"
  16.     exit 1
  17. fi
  18. if [ ! -f tandem.c ]; then
  19.     echo "error:  can't find tandem.c"
  20.     echo "  (either files are already renamed or else we're not in UnZip directory)"
  21.     exit 2
  22. fi
  23. echo "Renaming source files for Tandem (command = $MV) ..."
  24. $MV tandem.c tandemc
  25. $MV tandem.h tandemh
  26. $MV ../consts.h constsh
  27. $MV ../crc32.c crc32c
  28. $MV ../crctab.c crctabc
  29. $MV ../crypt.c cryptc
  30. $MV ../crypt.h crypth
  31. $MV ../ebcdic.h ebcdich
  32. $MV ../envargs.c envargsc
  33. $MV ../explode.c explodec
  34. $MV ../extract.c extractc
  35. $MV ../fileio.c fileioc
  36. $MV ../globals.c globalsc
  37. $MV ../globals.h globalsh
  38. $MV ../inflate.c inflatec
  39. $MV ../inflate.h inflateh
  40. $MV ../list.c listc
  41. $MV ../match.c matchc
  42. $MV ../process.c processc
  43. $MV ../tables.h tablesh
  44. $MV ../ttyio.c ttyioc
  45. $MV ../ttyio.h ttyioh
  46. $MV ../unshrink.c unshrinc
  47. $MV ../unzip.c unzipc
  48. $MV ../unzip.h unziph
  49. $MV ../unzpriv.h unzprivh
  50. $MV ../version.h versionh
  51. $MV ../zip.h ziph
  52. $MV ../zipinfo.c zipinfoc
  53. echo "Done."