Re: [libvirt] [test-API 12/17] Substitute 'guest"' with 'domain"'

2012-04-23 Thread Osier Yang
On 2012年04月23日 15:40, Peter Krempa wrote: On 04/20/2012 08:46 AM, Osier Yang wrote: % for i in $(grep 'guest"' * -r | awk -F':' '{print $1}'| uniq); do \ sed -i -e 's/guest"/domain"/g' $i; \ done This also affects the codes like: - url = global_parser.get_value("guest", gname + "src") - dict['

Re: [libvirt] [test-API 12/17] Substitute 'guest"' with 'domain"'

2012-04-23 Thread Peter Krempa
On 04/20/2012 08:46 AM, Osier Yang wrote: % for i in $(grep 'guest"' * -r | awk -F':' '{print $1}'| uniq); do \ sed -i -e 's/guest"/domain"/g' $i; \ done This also affects the codes like: -url = global_parser.get_value("guest", gname + "src") -dict['kickstart'] = global_parser.g

[libvirt] [test-API 12/17] Substitute 'guest"' with 'domain"'

2012-04-20 Thread Osier Yang
% for i in $(grep 'guest"' * -r | awk -F':' '{print $1}'| uniq); do \ sed -i -e 's/guest"/domain"/g' $i; \ done This also affects the codes like: -url = global_parser.get_value("guest", gname + "src") -dict['kickstart'] = global_parser.get_value("guest", gname + "ks") +url = glo