- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: EDIT/TPU error
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
Forums
Discussions
Discussions
Discussions
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
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-20-2005 08:47 PM
07-20-2005 08:47 PM
I am trying to use EDIT/TPU on OpenVMS VAX V6.2 for VAX4000 105 system. it gives error "Unrecognized qualifier, check validty and spelling"....simple EDIT works. What I have to do for TPU to function...
Rgds
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 08:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 04:23 AM
07-21-2005 04:23 AM
Re: EDIT/TPU error
If not check for logicals or symbols for edit and tpu.
Bob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 05:09 AM
07-21-2005 05:09 AM
Re: EDIT/TPU error
$show sym e*
If you have a symbol for edit it is probably in LOGIN.COM or worse SYLOGIN.COM.
Unfortunately some system managers and/or users do a:
$ e*dit :== - edit/edt/command=sys$manager:edtini.edt
or variation of it. It's not good practice to use a symbol name that will obscure a DCL command. Better would be symbols ed or edt for EDIT/EDT and TPU for EDIT/TPU
Lawrence
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 05:37 AM
07-21-2005 05:37 AM
Re: EDIT/TPU error
_IF_ you meet the situation described above, you will probably NOT want to break existing code.
You can always invoke a command while guaranteeing to NOT use any symbol redefinition by adding an exrta letter to it.
As long as that is NOT the long er form of the symbol, this bypasses the symbol definition.
Also the backslash character ( \ ) will do file.
So,
$ EDIT\
will always get you the plain command.
Of course, after the \ you can add any qualifiers YOU currently require.
hth
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 07:30 AM
07-21-2005 07:30 AM
Re: EDIT/TPU error
When invoking an editor on an unfamiliar system, I always type it like this:
$ EDITT/TPU
Since DCL only ever looks at the first four characters of a command verb, "EDITT" will be identified as the "EDIT" command, but will bypass any locally defined symbol for "EDIT".
People looking over your shoulder will probably inform you you've made a typo, but you can just say "trust me, I know what I'm doing" ;-)
(of course, one day, some joker will define a symbol:
$ EDITT:=="write sys$output ""ha, ha, got you!""!"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 05:52 PM
07-21-2005 05:52 PM
Re: EDIT/TPU error
No you didn't:
$ EDITTT
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2005 08:21 PM
07-21-2005 08:21 PM
Re: EDIT/TPU error
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 07:24 AM
07-25-2005 07:24 AM
Re: EDIT/TPU error
Lawrence