$! SEARCH.COM - Front-end to SEARCH TECO Command $ $! Any data comes from the terminal $ _Set NoData $ $! Exit on any errors or CTRL/C $ _On error then _Goto EXIT $ _On Control_C then _Goto EXIT $ $! Lower job's priority if able $ _If F$Priv("TUNE") then - _Set Job/priority=-16 $ $! Run it $ _Run %SEARCH.TEC $ $EXIT: $ $! Restore priority if able $ _If F$Priv("TUNE") then - _Set Job/priority=-8 $ $ _Exit