Revision c0f12bb6f3ea8f1350371695b42990a5c2eb93f2 authored by Giuseppe Attardi on 02 March 1998, 23:00:00 UTC, committed by CMM Curation Team on 11 December 2019, 14:35:48 UTC
Contributors mentioned in Changelog :
 - Giuseppe Attardi @attardi
 - Tito Flagella @tflagella
 - Pietro Iglio
1 parent 55778ad
Raw File
CmmUpgrade
#/bin/sh
#
sed -e s/"roots.setp"/"roots.add"/g \
    -e s/"roots.set"/"roots.add"/g \
    -e s/"roots.unsetp"/"roots.remove"/g \
    -e s/"roots.unset"/"roots.remove"/g \
    -e s/"gcRoots"/"registerRootArea"/g \
    -e s/"gcUnroots"/"unregisterRootArea"/g $1 \
    > TmpSedOutput
mv TmpSedOutput $1
back to top