ToolTips and Automatic Formatting

Mark Kretschmann kretschmann at kde.org
Fri Aug 16 09:27:15 UTC 2013


On Fri, Aug 16, 2013 at 11:07 AM, vedant agarwala <vedant.kota at gmail.com> wrote:
> Hello.
> I think the best way to go forward is, as you have said, changing all the
> ToolTip strings, since we have nothing better. Doing it manually would be
> very boring but I think it wouldn't take more than a few hours. We would
> just have to find setToolTip (and similar functions) and change them.
> I have no experience with sed but it seems like a nice tool and so I would
> love to use it though I am pretty sure it would take me more than a few
> hours with sed.
> After a few more opinions (i.e. in a couple of days), if we don't have a
> better solution, I would like to get started on this using sed.

Sed is really simple to use. It uses the popular "s/foo/bar" notation
that you probably know from Vim and elsewhere. So you can use a
one-liner command with find and sed like this:

find . -type f -print0 | xargs -0 sed -i
's/subdomainA.example.com/subdomainB.example.com/g'

-- 
Mark Kretschmann
Amarok Developer
Fellow of the Free Software Foundation Europe
http://amarok.kde.org - http://fsfe.org


More information about the Amarok-devel mailing list