index
|
people
|
commits
|
about
chld
/
dot
/ tree
summary
|
tree
|
log
|
branches
|
tags
master
chld/dot
/
bin
/
spec
1
#!/bin/sh
2
for
f in *
\
*
;
do
mv
"
$f
"
"
`echo
$f
|sed 's/ /_/g'`
"
;
done
3