view nobuild/script.sh @ 138:a1c2b56cb44d

Beginnings of rst doc with embedded plantuml
author David Bryant <bagnose@gmail.com>
date Sun, 30 Sep 2012 15:25:53 +0930
parents 0d427170a805
children
line wrap: on
line source

#!/bin/bash

for i in $*; do
    cat $i | sed 's/protected void setStruct/protected override void setStruct/g' >| $i.new && mv -f $i.new $i
done