switched from using sed to perl in mirabelle tool
authorsultana
Sat, 14 Apr 2012 23:52:17 +0100
changeset 47478 d2392e6cba7f
parent 47477 3fabf352243e
child 47479 e6add51fd7ba
switched from using sed to perl in mirabelle tool
src/HOL/Mirabelle/lib/Tools/mirabelle
--- a/src/HOL/Mirabelle/lib/Tools/mirabelle	Sat Apr 14 23:52:17 2012 +0100
+++ b/src/HOL/Mirabelle/lib/Tools/mirabelle	Sat Apr 14 23:52:17 2012 +0100
@@ -11,7 +11,7 @@
   ACTIONS="$MIRABELLE_HOME/Actions/mirabelle_*.ML"
   for ACTION in $ACTIONS
   do
-    echo $ACTION | sed 's/.*mirabelle_\(.*\)\.ML/    \1/'
+    echo $ACTION | perl -w -p -e 's/.*mirabelle_(.*)\.ML/    $1/'
   done
 }