one2all_r.sh
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
源码类别:

生物技术

开发平台:

C/C++

  1. #! /bin/sh
  2. #
  3. # $Id: one2all_r.sh,v 1000.0 2003/10/29 14:25:14 gouriano Exp $
  4. # ===========================================================================
  5. #                            PUBLIC DOMAIN NOTICE
  6. #               National Center for Biotechnology Information
  7. #  This software/database is a "United States Government Work" under the
  8. #  terms of the United States Copyright Act.  It was written as part of
  9. #  the author's official duties as a United States Government employee and
  10. #  thus cannot be copyrighted.  This software/database is freely available
  11. #  to the public for use. The National Library of Medicine and the U.S.
  12. #  Government have not placed any restriction on its use or reproduction.
  13. #  Although all reasonable efforts have been taken to ensure the accuracy
  14. #  and reliability of the software and data, the NLM and the U.S.
  15. #  Government do not and cannot warrant the performance or results that
  16. #  may be obtained by using this software or data. The NLM and the U.S.
  17. #  Government disclaim all warranties, express or implied, including
  18. #  warranties of performance, merchantability or fitness for any particular
  19. #  purpose.
  20. #  Please cite the author in any work or product based on this material.
  21. # ===========================================================================
  22. # Author:  Anton Lavrentiev
  23. # MSVC project file recursive converter that converts single-config files
  24. # into multiple config files on the entire subtree.
  25. #
  26. # ===========================================================================
  27. usage() {
  28.   echo 'Automatic single config for Microsoft Visual C++ Project File V 6.0'
  29.   echo 'Usage:'
  30.   echo `basename $0` '[--without-dizzy]'
  31.   exit 1
  32. }
  33. if [ _$1 = _--without-dizzy ]; then
  34.   without_dizzy="$1"
  35.   shift
  36. else
  37.   without_dizzy=""
  38. fi
  39. if [ "$1" = "--help" -o "$1" = "-h" -o "$1" = "-?" ]; then
  40.   usage
  41. fi
  42. dir=`dirname $0`
  43. if [ ! -x ${dir:-.}/one2all.sh ]; then
  44.   echo "ERROR: Script "${dir:-.}/one2all.sh" not found. Stop."
  45.   exit 3
  46. fi
  47. find . -name "*.dsp" -exec ${dir:-.}/one2all.sh $without_dizzy {} ;
  48. #  ===========================================================================
  49. #  PRODUCTION $Log: one2all_r.sh,v $
  50. #  PRODUCTION Revision 1000.0  2003/10/29 14:25:14  gouriano
  51. #  PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  52. #  PRODUCTION
  53. #  ===========================================================================