scripts/rename-graphs
author convert-repo
Thu, 04 Mar 2010 19:34:55 +0000
changeset 2659 611ced85018b
parent 2558 e70b52a8cd57
permissions -rwxr-xr-x
update tags
     1 #!/bin/bash
     2 
     3 ID=$RANDOM
     4 
     5 cat $1 | \
     6 sed -e "s/bipartite undirected graph/bipartite graph/g"\
     7 	-e "s/undirected graph/_gr_aph_label_/g"\
     8 	-e "s/undirected edge/_ed_ge_label_/g"\
     9 	-e "s/graph_/_gr_aph_label__/g"\
    10 	-e "s/_graph/__gr_aph_label_/g"\
    11 	-e "s/UGraph/_Gr_aph_label_/g"\
    12 	-e "s/uGraph/_gr_aph_label_/g"\
    13 	-e "s/ugraph/_gr_aph_label_/g"\
    14 	-e "s/Graph/_Digr_aph_label_/g"\
    15 	-e "s/graph/_digr_aph_label_/g"\
    16 	-e "s/UEdge/_Ed_ge_label_/g"\
    17 	-e "s/uEdge/_ed_ge_label_/g"\
    18 	-e "s/uedge/_ed_ge_label_/g"\
    19 	-e "s/IncEdgeIt/_In_cEd_geIt_label_/g"\
    20 	-e "s/Edge/_Ar_c_label_/g"\
    21 	-e "s/edge/_ar_c_label_/g"\
    22 	-e "s/ANode/_Re_d_label_/g"\
    23 	-e "s/BNode/_Blu_e_label_/g"\
    24 	-e "s/A-Node/_Re_d_label_/g"\
    25 	-e "s/B-Node/_Blu_e_label_/g"\
    26 	-e "s/anode/_re_d_label_/g"\
    27 	-e "s/bnode/_blu_e_label_/g"\
    28 	-e "s/aNode/_re_d_label_/g"\
    29 	-e "s/bNode/_blu_e_label_/g"\
    30 	-e "s/_Digr_aph_label_/Digraph/g"\
    31 	-e "s/_digr_aph_label_/digraph/g"\
    32 	-e "s/_Gr_aph_label_/Graph/g"\
    33 	-e "s/_gr_aph_label_/graph/g"\
    34 	-e "s/_Ar_c_label_/Arc/g"\
    35 	-e "s/_ar_c_label_/arc/g"\
    36 	-e "s/_Ed_ge_label_/Edge/g"\
    37 	-e "s/_ed_ge_label_/edge/g"\
    38 	-e "s/_In_cEd_geIt_label_/IncEdgeIt/g"\
    39 	-e "s/_Re_d_label_/Red/g"\
    40 	-e "s/_Blu_e_label_/Blue/g"\
    41 	-e "s/_re_d_label_/red/g"\
    42 	-e "s/_blu_e_label_/blue/g"\
    43 > rename_graphs_temp_file_$ID.tmp
    44 
    45 mv rename_graphs_temp_file_$ID.tmp $1