mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
6 lines
158 B
Bash
Executable File
6 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find {pkgdiff_reports/jdk,exclusions} -type f \( -iname '*.html' -o -iname '*.java' \) | while read f; do
|
|
mv $f $(echo $f | tr '/' '.')
|
|
done
|