ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
REPOS_ERICCA
/
util
/
ecnUtil
/
update-all-reference
Revision:
4
Committed:
Tue Jun 12 19:51:29 2007 UTC
(17 years, 11 months ago)
File size:
85 byte(s)
Log Message:
File Contents
#
Content
1
#!/bin/sh
2
3
for i in `ls -I CVS`
4
do
5
cd $i
6
update-reference
7
cd ..
8
done
9