aboutsummaryrefslogblamecommitdiffstats
path: root/install-sh
blob: a2a1052fa3fbac72149b41211c8ec18c7a0968d6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
          
                                                      







                







                            








                     
                                             



        




                  

              


                        
                       
                   
  
#! /bin/sh
# $Id: install-sh,v 1.2 2001/12/15 17:25:45 ukai Exp $

while :
do
  case $1 in
  -m)
    mode=$2
    shift; shift
    ;;
  -s)
    if [ -n "$STRIP" ]; then
      strip=$STRIP
    else
      strip=strip
    fi
    shift;
    ;;
  -*)
    shift
    ;;
  *)
    break
  esac
done

if [ $# -lt 2 ]; then
  echo "usage: $0 [-m mode] [-s] file1 file2"
  exit 1
fi

file=$1
if [ -d $2 ]; then
  dest=$2/$file
else
  dest=$2
fi

cp $file $dest
if [ -n "$strip" ]; then
  $strip $dest
fi
if [ -n "$mode" ]; then
  chmod $mode $dest
fi