aboutsummaryrefslogtreecommitdiffstats
path: root/install-sh
blob: 88018e520f3979513388294d0ec9a2e2a412c64f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#! /bin/sh
# $Id: install-sh,v 1.6 2002/11/06 15:09:16 ukai Exp $

set -e

while :
do
  case $1 in
  -m)
    mode=$2
    shift; shift
    ;;
  -s)
    if [ -n "$STRIP" ]; then
      strip=$STRIP
    else
      strip=strip
    fi
    shift;
    ;;
  -o) owner=$2
      shift; shift
      ;;
  -g) group=$2
      shift; 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

if [ -f $dest ]; then
  rm -f $dest
fi
cp $file $dest
if [ -n "$strip" ]; then
  $strip $dest
fi
if [ -n "$owner" ]; then
  chown $owner $dest
fi
if [ -n "$group" ]; then
  chgrp $group $dest
fi
if [ -n "$mode" ]; then
  chmod $mode $dest
fi