I am not able to find out if and how it is possible to make a dry run with sed.
So i have this command:
find ./ -type f | xargs sed -i 's/string1/string2/g'
But before I really substitute in all the files, i want to check what it WOULD substitute. Copying the whole directory structure to check is no option!
Thanks for any feedback (negative or positive :) )