scripts/lemon-0.x-to-1.x.sh
author Alpar Juttner <alpar@cs.elte.hu>
Mon, 06 Oct 2008 13:02:13 +0100
changeset 305 069f27927ba9
child 306 2bf7c645d5a6
permissions -rwxr-xr-x
0.x -> 1.x migration script and guide (preliminary version) (#157)
     1 #!/bin/bash
     2 
     3 set -e
     4 
     5 if [ $# -eq 0 -o x$1 = "x-h" -o x$1 = "x-help" -o x$1 = "x--help" ]; then
     6 	echo "Usage:"
     7 	echo "  $0 source-file"
     8 	exit
     9 fi
    10 
    11 TMP=`mktemp`
    12 
    13 sed -e "s/bipartite undirected graph/bipartite graph/g"\
    14 	-e "s/undirected graph/_gr_aph_label_/g"\
    15 	-e "s/undirected edge/_ed_ge_label_/g"\
    16 	-e "s/graph_/_gr_aph_label__/g"\
    17 	-e "s/_graph/__gr_aph_label_/g"\
    18 	-e "s/UGraph/_Gr_aph_label_/g"\
    19 	-e "s/uGraph/_gr_aph_label_/g"\
    20 	-e "s/ugraph/_gr_aph_label_/g"\
    21 	-e "s/Graph/_Digr_aph_label_/g"\
    22 	-e "s/graph/_digr_aph_label_/g"\
    23 	-e "s/UEdge/_Ed_ge_label_/g"\
    24 	-e "s/uEdge/_ed_ge_label_/g"\
    25 	-e "s/uedge/_ed_ge_label_/g"\
    26 	-e "s/IncEdgeIt/_In_cEd_geIt_label_/g"\
    27 	-e "s/Edge/_Ar_c_label_/g"\
    28 	-e "s/edge/_ar_c_label_/g"\
    29 	-e "s/ANode/_Re_d_label_/g"\
    30 	-e "s/BNode/_Blu_e_label_/g"\
    31 	-e "s/A-Node/_Re_d_label_/g"\
    32 	-e "s/B-Node/_Blu_e_label_/g"\
    33 	-e "s/anode/_re_d_label_/g"\
    34 	-e "s/bnode/_blu_e_label_/g"\
    35 	-e "s/aNode/_re_d_label_/g"\
    36 	-e "s/bNode/_blu_e_label_/g"\
    37 	-e "s/_Digr_aph_label_/Digraph/g"\
    38 	-e "s/_digr_aph_label_/digraph/g"\
    39 	-e "s/_Gr_aph_label_/Graph/g"\
    40 	-e "s/_gr_aph_label_/graph/g"\
    41 	-e "s/_Ar_c_label_/Arc/g"\
    42 	-e "s/_ar_c_label_/arc/g"\
    43 	-e "s/_Ed_ge_label_/Edge/g"\
    44 	-e "s/_ed_ge_label_/edge/g"\
    45 	-e "s/_In_cEd_geIt_label_/IncEdgeIt/g"\
    46 	-e "s/_Re_d_label_/Red/g"\
    47 	-e "s/_Blu_e_label_/Blue/g"\
    48 	-e "s/_re_d_label_/red/g"\
    49 	-e "s/_blu_e_label_/blue/g"\
    50 <$1 > $TMP
    51 
    52 mv $TMP $1