/
[gentoo-projects]
/
portage-utils
/
cvsignore-to-gitignore.sh
Contents of /portage-utils/cvsignore-to-gitignore.sh
Parent Directory
|
Revision Log
Revision
1.1
- (
show annotations
) (
download
) (
as text
)
Mon Jun 4 21:00:34 2012 UTC
(11 months, 1 week ago) by
vapier
Branch:
MAIN
CVS Tags:
HEAD
File MIME type: text/x-sh
merge cvs and git ignore files
1
#!/bin/bash
2
3
find -name .cvsignore | \
4
while read c ; do
5
g=${c/cvs/git}
6
sed \
7
-e 's:[.]git:CVS:' \
8
${c} > ${g}
9
done
ViewVC Help
Powered by
ViewVC 1.1.13