#!/usr/bin/perl # Update documents to the Samba DTD V1.0 undef $/; while(<>) { s/(.*?)<\/name>(.*?)<\/value><\/smbconfoption>/\2<\/smbconfoption>/g; s/(.*?)<\/name><\/smbconfoption>//g; print $_; }