Search found 2 matches

by marteenzh
Mon Mar 27, 2017 9:53 pm
Forum: Support
Topic: Batch change tracker URL for torrents
Replies: 18
Views: 16126

Re: Batch change tracker URL for torrents

Found something that works well in Mac OS.

Code: Select all

perl -pi -w -e 's/THIS/THAT/g;' /path/to/files*.txt
Referenced from http://osxdaily.com/2013/08/20/find-rep ... mand-line/
by marteenzh
Mon Mar 27, 2017 9:52 pm
Forum: Development
Topic: multi trackers edition or search and replace function
Replies: 6
Views: 16972

Re: multi trackers edition or search and replace function

I've been struggling with this, too, and finally found something that works on Mac OS: perl -pi -w -e 's/THIS/THAT/g;' /path/to/files*.txt Referenced from [this page](http://osxdaily.com/2013/08/20/find-replace-text-in-multiple-documents-from-the-command-line/). Opened Terminal, cd'd to the director...