script {This is a script example looking for passages in which two or more occurrences of προς or εις appear near each other.} // The text between curly braces is displayed when typing help example.txt // This is example.txt, a script example for the SEEK Bible software pause on // Activates the pause command echo off // Disables messages of low priority echo \n The program searches for instances in which the words προς and εις appear near each other and for instances in which there are two occurrences of εις or προς near each other.\n echo Press the \cmnd enter\Txt key to search for passages in which προς and εις appear near each other pause NT // Load the New Testament module r // Use the default range win 20 // set the search window to 20 g " προς " " εις " // Search for text containing the two words. The entire words are searched for. echo Press the \cmnd enter\Txt key to search for passages in which two occurrences of εις appear near each other pause g " εις " " εις " echo Press the \cmnd enter\Txt key to search for passages in which two occurrences of προς appear near each other pause g " προς " " προς " // Restore default settings win echo on