install-sh
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # install - install a program, script, or datafile
  4. # This comes from X11R5; it is not part of GNU.
  5. #
  6. # $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
  7. #
  8. # This script is compatible with the BSD install script, but was written
  9. # from scratch.
  10. #
  11. # set DOITPROG to echo to test this script
  12. # Don't use :- since 4.3BSD and earlier shells don't like it.
  13. doit="${DOITPROG-}"
  14. # put in absolute paths if you don't have them in your path; or use env. vars.
  15. mvprog="${MVPROG-mv}"
  16. cpprog="${CPPROG-cp}"
  17. chmodprog="${CHMODPROG-chmod}"
  18. chownprog="${CHOWNPROG-chown}"
  19. chgrpprog="${CHGRPPROG-chgrp}"
  20. stripprog="${STRIPPROG-strip}"
  21. rmprog="${RMPROG-rm}"
  22. instcmd="$mvprog"
  23. chmodcmd=""
  24. chowncmd=""
  25. chgrpcmd=""
  26. stripcmd=""
  27. rmcmd="$rmprog -f"
  28. mvcmd="$mvprog"
  29. src=""
  30. dst=""
  31. while [ x"$1" != x ]; do
  32.     case $1 in
  33. -c) instcmd="$cpprog"
  34.     shift
  35.     continue;;
  36. -m) chmodcmd="$chmodprog $2"
  37.     shift
  38.     shift
  39.     continue;;
  40. -o) chowncmd="$chownprog $2"
  41.     shift
  42.     shift
  43.     continue;;
  44. -g) chgrpcmd="$chgrpprog $2"
  45.     shift
  46.     shift
  47.     continue;;
  48. -s) stripcmd="$stripprog"
  49.     shift
  50.     continue;;
  51. -S) stripcmd="$stripprog $2"
  52.     shift
  53.     shift
  54.     continue;;
  55. *)  if [ x"$src" = x ]
  56.     then
  57. src=$1
  58.     else
  59. dst=$1
  60.     fi
  61.     shift
  62.     continue;;
  63.     esac
  64. done
  65. if [ x"$src" = x ]
  66. then
  67. echo "install:  no input file specified"
  68. exit 1
  69. fi
  70. if [ x"$dst" = x ]
  71. then
  72. echo "install:  no destination specified"
  73. exit 1
  74. fi
  75. # If destination is a directory, append the input filename; if your system
  76. # does not like double slashes in filenames, you may need to add some logic
  77. if [ -d $dst ]
  78. then
  79. dst="$dst"/`basename $src`
  80. fi
  81. # Make a temp file name in the proper directory.
  82. dstdir=`dirname $dst`
  83. dsttmp=$dstdir/#inst.$$#
  84. # Move or copy the file name to the temp name
  85. $doit $instcmd $src $dsttmp
  86. # and set any options; do chmod last to preserve setuid bits
  87. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; fi
  88. if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; fi
  89. if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; fi
  90. if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi
  91. # Now rename the file to the real destination.
  92. $doit $rmcmd $dst
  93. $doit $mvcmd $dsttmp $dst
  94. exit 0