Відповіді:
Ви також можете відкрити RTF-файл у TextEdit, а потім запустити такий сценарій у редакторі AppleScript:
set x to "dogs"
set text item delimiters to x
tell application "TextEdit" to tell document 1
set ti to text items of (get its text)
repeat with i from 1 to (count of ti) - 1
set l to count of (items 1 thru i of ti as text)
set font of characters l thru (s + (length of x)) to "Helvetica Bold"
end repeat
end tell