| author | Christian Urban <urbanc@in.tum.de> | 
| Thu, 08 Dec 2016 12:50:54 +0000 | |
| changeset 85 | fd3f8581ce85 | 
| parent 78 | 85f2f75abeeb | 
| child 89 | fac25de665d2 | 
| permissions | -rw-r--r-- | 
| 78 | 1 | Calling ediff from the command line | 
| 2 | ||
| 3 | ||
| 4 | emacs --eval "(ediff-files \"k1502472/drumb.scala\" \"k1502752/drumb.scala\")" | |
| 85 | 5 | |
| 6 | ||
| 7 | deleting comments from scala files | |
| 8 | ||
| 9 | find . -name '*.scala' -print0 | xargs -0 perl -n -p -0 -i.bak -e 's%/\*([^*].*?)?\*/%%gs;s%^([^\"\n\r]*(\"[^\"\n\r]*\"[^\"\n\r]*?)*?)//([^*\n\r].*)?$%$1%gm' |