Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 680a88368922904a6c20d5a9721362f4 > files > 2349

bzr-2.3.4-1.fc15.i686.rpm

#! /bin/sh -e

# Take a file that is versioned by bzr and
# add it to baz with the same file-id.

if [ $# -lt 1 ]
then
    echo "usage: $0 FILE" >&2
    exit 1
fi

for f
do
    baz add -i "$( bzr file-id "$f" )" "$f"
done