makeinfo.sh
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:1k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # Copyright (c) 1998, 1999 Sendmail, Inc. and its suppliers.
  4. # All rights reserved.
  5. # Copyright (c) 1983 Eric P. Allman.  All rights reserved.
  6. # Copyright (c) 1988, 1993
  7. # The Regents of the University of California.  All rights reserved.
  8. #
  9. # By using this file, you agree to the terms and conditions set
  10. # forth in the LICENSE file which can be found at the top level of
  11. # the sendmail distribution.
  12. #
  13. #
  14. # $Id: makeinfo.sh,v 8.14 1999/02/07 07:26:25 gshapiro Exp $
  15. #
  16. usewhoami=0
  17. usehostname=0
  18. for p in `echo $PATH | sed 's/:/ /g'`
  19. do
  20. if [ "x$p" = "x" ]
  21. then
  22. p="."
  23. fi
  24. if [ -f $p/whoami ]
  25. then
  26. usewhoami=1
  27. if [ $usehostname -ne 0 ]
  28. then
  29. break;
  30. fi
  31. fi
  32. if [ -f $p/hostname ]
  33. then
  34. usehostname=1
  35. if [ $usewhoami -ne 0 ]
  36. then
  37. break;
  38. fi
  39. fi
  40. done
  41. if [ $usewhoami -ne 0 ]
  42. then
  43. user=`whoami`
  44. else
  45. user=$LOGNAME
  46. fi
  47. if [ $usehostname -ne 0 ]
  48. then
  49. host=`hostname`
  50. else
  51. host=`uname -n`
  52. fi
  53. echo '#####' built by $user@$host on `date`
  54. echo '#####' in `pwd` | sed 's//tmp_mnt//'
  55. echo '#####' using $1 as configuration include directory | sed 's//tmp_mnt//'
  56. echo "define(`__HOST__', $host)dnl"