From 3e0ea6a0e3d9bcc770cf28972ecf2e7d075f2237 Mon Sep 17 00:00:00 2001 From: Ivan Zakharyaschev Date: Thu, 19 Mar 2009 14:20:41 +0000 Subject: [PATCH] Initial revision --- parseRCS-indep | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 parseRCS-indep diff --git a/parseRCS-indep b/parseRCS-indep new file mode 100755 index 0000000..41e2248 --- /dev/null +++ b/parseRCS-indep @@ -0,0 +1,14 @@ +#!/bin/bash + +# $Id$ + +# Passes through the options to parsecvs. + +# Fail on errors: +set -e + +git init + +for f in RCS/*; do + parsecvs-as-sidehist refs/remotes/"${f%%,v}" "$@" "$f" +done -- 2.11.4.GIT