home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1999 March B
/
SCO_CASTOR4RRT.iso
/
cmds
/
root.3
/
usr
/
lib
/
acct
/
nulladm
/
nulladm~
Wrap
Text File
|
1998-08-19
|
833b
|
25 lines
#!/sbin/sh
# Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved.
#
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE
# SANTA CRUZ OPERATION INC.
#
# The copyright notice above does not evidence any actual or intended
# publication of such source code.
# copyright "%c%"
#ident "@(#)acct:common/cmd/acct/nulladm.sh 1.5.1.3"
#ident "$Header: $"
# "nulladm name..."
# "creates each named file mode 664"
# "make sure owned by adm (in case created by root)"
for _file
do
cp /dev/null $_file
chmod 664 $_file
chgrp adm $_file
chown adm $_file
done