Files
Arquivotheca.SunOS-4.1.4/man/bin/archive.sh
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

19 lines
239 B
Bash

#! /bin/sh
# @(#)archive.sh 1.1 94/10/31 SMI;
echo "archiving: $*" | fmt
echo -n "OK? "
read ok
case $ok in
y*|Y*) : ;;
*) exit ;;
esac
sccs edit -s $*
sccs delta -s $*
for i in $*
do
mv SCCS/s.$i /usr/src/man/arch/SCCS
rm -f $i
done