xorg-xorgproto/attic/move-protos
Adam Jackson 866582439a Move the migration scripts and data to the attic
Signed-off-by: Adam Jackson <ajax@redhat.com>
2018-02-01 15:07:35 -05:00

21 lines
286 B
Bash

#!/bin/sh
case $# in
1)
me="$1"
;;
*)
echo 'Usage: $0 <my-name>'
exit 1
;;
esac
for i in `cat duplicate-files`; do
if [ -f $i ]; then
mkdir -p $me/`dirname $i`
echo git mv $i $me/$i
git mv $i $me/$i
fi
done
git commit -m"Move common $me files out of the way"