Problems registering, no confirmation email - see http://wiki.scribus.net/canvas/Forums_Registration
QuoteWhen reusing a Scribus document to begin a new iteration of it, I always seem to end up adding new styles as well as reusing existing ones. But some of the existing styles are no longer used in my current document and should be removed. But how do I find which styles are actively being used? I wrote a short bash script (linux) to find these:grep PARENT= <targetFile>.sla | sort | uniq | grep -o '".*"' | sed 's/"\([^"]*\)".*/\1/' | sort | uniq
grep PARENT= <targetFile>.sla | grep -v ""STYLE NAME" | sort | uniq | grep -o '".*"' | sed 's/"\([^"]*\)".*/\1/' | sort | uniq
the obtained output seems OK for me.