mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-22 08:46:56 -06:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
find . -type f -name '*.java.new' | \
|
|
while read newname
|
|
do
|
|
original=${newname%%.new}
|
|
mv $newname $original
|
|
printf "moved %s to %s\n" "${newname}" "${original}"
|
|
done
|