- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Reflection scripting (RCL)
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-04-2007 10:25 PM
тАО07-04-2007 10:25 PM
Reflection scripting (RCL)
Lets say I was doing a DIR and I wanted to verify each line of the output did not contain the text niall.txt until my terminator or variable is found. what could I do? I'm trying something like this: But it is just complete rubish.
let v3 = "Total"
dir sys$sysdevice:[000000]
let v2 = ""
:LOOP
readhost v2 limit 256 until "niall.txt" terminator v3
if v2 = v3
goto next
else
goto loop
endif
:next
I hope someone can help, Thanks Niall.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2007 01:12 AM
тАО07-05-2007 01:12 AM
Re: Reflection scripting (RCL)
Reading Data from the Host
ReadChars method
ReadLine method
ReadUntil method
Waiting for Data From the Host
Wait method
WaitForIncomingData method
WaitForHostTrigger method
WaitForSilence method
WaitForString method
WaitForStrings method
WaitUntil method
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2007 01:48 AM
тАО07-05-2007 01:48 AM
Re: Reflection scripting (RCL)
I'm running an old version of reflections (version 5.2). Your examples are not accepted by my version of reflections.
Thanks,
Niall
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2007 12:39 PM
тАО07-05-2007 12:39 PM
Re: Reflection scripting (RCL)
https://download.attachmate.com/upgrades/search.aspx
search for RCL under Reflection for unix and vms and you get a few examples,
and these mostly date from older versions
Phil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2007 09:11 PM
тАО07-05-2007 09:11 PM
Re: Reflection scripting (RCL)
Hopefully there is something in there I can use.
Thanks,
Niall