Shell script containing the steps followed in importing file(1).
Reviewed by: Geoff. Submitted by: Rod Grimes.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
# import sequence for file(1)
|
||||
# This shell script can be used in order to handle future imports
|
||||
# of newer versions of file(1)
|
||||
#
|
||||
# $Id$
|
||||
if [ $# -ne 2 ] ; then
|
||||
echo "usage: $0 <major> <minor>" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
version=$1.$2
|
||||
tar xzf file-$version.tar.gz
|
||||
cd file-$version
|
||||
mv file.man file.1
|
||||
mv magic.man magic.5
|
||||
rm Magdir/Makefile
|
||||
cvs -n import src/usr.bin/file DARWIN file_$1_$2
|
||||
Reference in New Issue
Block a user