JdbcMapper/revertJava6.sh

3 lines
165 B
Bash
Raw Normal View History

2017-06-13 23:55:57 -04:00
#!/bin/sh
find */src/{main,test}/java -type f -name '*.java' -print0 | xargs -0 sed -i -e 's@/\*IFJAVA8_START@//IFJAVA8_START@' -e 's@IFJAVA8_END\*/@//IFJAVA8_END@'