nosqlbench/scripts/accept_licenses.sh

9 lines
181 B
Bash
Raw Normal View History

2022-05-20 13:57:13 -05:00
#!/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