home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.4 Applications 1997 August
/
SGI IRIX 6.4 Applications 1997 August.iso
/
dist
/
arraysvcs.idb
/
usr
/
lib
/
array
/
acpr.z
/
acpr
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-02-07
|
295 b
|
20 lines
#!/bin/sh
#
# Simple script to invoke cpr for an array session
#
# USAGE: acpr <real-user> <real-group> <args-to-cpr...>
#
CPR=${CPR:-/usr/bin/cpr}
#
# Invoke cpr if it actually exists
#
if [ -x $CPR ]; then
exec $CPR -A $*
else
echo "Sorry, CPR is not supported on this system"
exit 1
fi