summaryrefslogtreecommitdiff
path: root/com/locked
diff options
context:
space:
mode:
authorYale AI Dept <ai@nebula.cs.yale.edu>1993-07-14 13:08:00 -0500
committerDuncan McGreggor <duncan.mcgreggor@rackspace.com>1993-07-14 13:08:00 -0500
commit4e987026148fe65c323afbc93cd560c07bf06b3f (patch)
tree26ae54177389edcbe453d25a00c38c2774e8b7d4 /com/locked
Import to github.
Diffstat (limited to 'com/locked')
-rwxr-xr-xcom/locked14
1 files changed, 14 insertions, 0 deletions
diff --git a/com/locked b/com/locked
new file mode 100755
index 0000000..f98fd19
--- /dev/null
+++ b/com/locked
@@ -0,0 +1,14 @@
+#!/bin/csh
+#
+#
+# identify locked source files
+#
+
+cd $Y2
+foreach i (*/*.scm */*.lisp)
+ if (-e $i:h/RCS/$i:t,v) then
+ foreach j (`rlog -R -L $i:h/RCS/$i:t,v`)
+ ls -l $i
+ end
+ endif
+end