mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
18 lines
393 B
Bash
18 lines
393 B
Bash
#!/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)
|
|
#
|
|
# $FreeBSD$
|
|
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
|