Re: [Qemu-devel] [PATCHv2] fix some common typos

2012-05-14 Thread Stefan Weil
Am 09.05.2012 17:12, schrieb Jim Meyering: These were identified using: http://github.com/lyda/misspell-check and run like this to create a bourne shell script using GNU sed's -i option: git ls-files|grep -vF .bin | misspellings -f - |grep -v '^ERROR:' |perl \ -pe 's/^(.*?)\[(\d+)\]: (\w+) -> "

Re: [Qemu-devel] [PATCHv2] fix some common typos

2012-05-09 Thread Peter Maydell
On 9 May 2012 16:12, Jim Meyering wrote: > > These were identified using: http://github.com/lyda/misspell-check > and run like this to create a bourne shell script using GNU sed's > -i option: > > git ls-files|grep -vF .bin | misspellings -f - |grep -v '^ERROR:' |perl \ > -pe 's/^(.*?)\[(\d+)\]: (

[Qemu-devel] [PATCHv2] fix some common typos

2012-05-09 Thread Jim Meyering
These were identified using: http://github.com/lyda/misspell-check and run like this to create a bourne shell script using GNU sed's -i option: git ls-files|grep -vF .bin | misspellings -f - |grep -v '^ERROR:' |perl \ -pe 's/^(.*?)\[(\d+)\]: (\w+) -> "(.*?)"$/sed -i '\''${2}s!$3!$4!'\'' $1/' Man