README
changeset 85 fd3f8581ce85
parent 78 85f2f75abeeb
child 89 fac25de665d2
equal deleted inserted replaced
84:8b132f8de8c7 85:fd3f8581ce85
     1 Calling ediff from the command line
     1 Calling ediff from the command line
     2 
     2 
     3 
     3 
     4 emacs --eval "(ediff-files \"k1502472/drumb.scala\" \"k1502752/drumb.scala\")"
     4 emacs --eval "(ediff-files \"k1502472/drumb.scala\" \"k1502752/drumb.scala\")"
       
     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'