Re: [U2] universe compiler -xref output

2012-02-15 Thread Tony Gravagno
From: Buss, Troy I'd like to eliminate assigned but unused variables, so I'm looking for output that has single assignments only. I asked about this a couple days ago in the mvToolbox forum, and was told that product should be able to help with this. That's no surprise as it has a million

[U2] Universe's DOS command

2012-02-15 Thread Wjhonson
The DOS command in Universe takes a /c argument and then you can specify a bat file like DOS \c test.bat What does \c mean? Are there other arguments like \z or \x that it can take? ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] Universe's DOS command

2012-02-15 Thread Robert Porter
From DOS/Windows days, which also uses the same /c (argument), I just assumed it meant Command. Wjhonson wjhon...@aol.com 2/15/2012 12:27 PM The DOS command in Universe takes a /c argument and then you can specify a bat file like DOS \c test.bat What does \c mean? Are there other

Re: [U2] Universe's DOS command

2012-02-15 Thread Bob Rasmussen
An educated guess would be that the DOS command invokes the command processor (command.com in long-ago Windows, cmd.exe now) and passes the \c (or is it /c?) to it. If in Windows you open a CMD prompt, and type cmd /? you can see what options it accepts. My output includes: /C

Re: [U2] Universe's DOS command

2012-02-15 Thread Woodward, Bob
The /c is to close the command session when the supplied process/batchfile completes. This returns you back to your originating session of Universe. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent:

Re: [U2] Universe's DOS command

2012-02-15 Thread Wjhonson
Oh... My... God Amazing try DOS /C DIR then try DOS /K DIR how come they don't document this and we have to make guesses? -Original Message- From: Bob Rasmussen r...@anzio.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Wed, Feb 15, 2012 10:38 am Subject: Re: [U2] Universe's

Re: [U2] Universe's DOS command

2012-02-15 Thread Larry Hiscock
Ummm ... it's not a UniVerse thing, it's a command prompt thing. Open up a command prompt window, and type cmd /? And you'll see all the options. /c means run the following command, then close the window /k means run the following command, and keep the window open There's a whole list of

Re: [U2] Universe's DOS command

2012-02-15 Thread Wjhonson
This one in particular (the /K) is exactly what I need to debug an issue I'm having. A real world issue, in an actual program I'm actually writing at this very moment. (That large remark is for Tony, who I'm sure will eventually jump in here and call me a troll.) -Original Message-

Re: [U2] universe compiler -xref output

2012-02-15 Thread Doug Averch
I saw this software many years ago at Spectrum conference. So I clicked on the link to see what's new. Most of the pages are dead and the ones that are not are hopeless out of date. See your comment from 2004 on http://www.mvtoolbox.com/Testimonials.1.html. I would be very worried that any

Re: [U2] Universe's DOS command

2012-02-15 Thread Brian Leach
I guess the thing is, people just don't learn Windows any more. Because it's so ubiquitous, and so 'just there', they tend to forget (or never learn) that there's a lot of good stuff going on underneath.. I'm just as bad: until recently I'd never used symlinks on Windows (as I've done for years

Re: [U2] mvToolbox

2012-02-15 Thread Tony Gravagno
From: Doug Averch I saw this software many years ago at Spectrum conference. So I clicked on the link to see what's new. Most of the pages are dead and the ones that are not are hopeless out of date. See your comment from 2004 on http://www.mvtoolbox.com/Testimonials.1.html. I would

Re: [U2] Universe's DOS command

2012-02-15 Thread Robert Houben
They actually do document these. Go to a command prompt and type: cmd /? Or help cmd (Both produce the same output) Enjoy! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: February-15-12 11:00 AM

Re: [U2] Universe's DOS command

2012-02-15 Thread Wjhonson
I mean they are not document in the Universe manuals for the DOS command executable at TCL. You only get the /c It doesn't even tell you where to go to get more information. Like There are other options, go to Dos and type cmd /? -Original Message- From: Robert Houben

Re: [U2] Universe's DOS command

2012-02-15 Thread George Gallen
I Tried doing the same with UV/Unix (except with the SH command). Sh -c 'ls' gives me directory Sh -k 'ls' gives a strange error: /bin/ls: /bin/ls: cannot execute binary file I don't have a DOS box to test DOS on, so what happened when you did DOS /K...? George -Original Message-

Re: [U2] Universe's DOS command

2012-02-15 Thread Robert Houben
The /k option is used to run a command (like a batch file) and keep the command shell around for more commands. The only difference to the /c option is that it does not immediately close after running your command. *nix doesn't have a /k option (but might have a different one). I suspect

Re: [U2] Universe's DOS command

2012-02-15 Thread George Gallen
OK, so it looks like it's just pushing to unix what is on the command line, and So the -c is an option to the sh command. I'll have to look into this now as well As to whether any of the options are of any use, other than -c George -Original Message- From:

Re: [U2] Universe's DOS command

2012-02-15 Thread Bob Rasmussen
Note that in Unix/Linux, the options available may depend on what shell you're running (sh, bash, etc.). On Wed, 15 Feb 2012, George Gallen wrote: OK, so it looks like it's just pushing to unix what is on the command line, and So the -c is an option to the sh command. I'll have to look

Re: [U2] U2-Users Digest, Vol 34, Issue 13

2012-02-15 Thread Bill Peeler
bill - Reply message - From: u2-users-requ...@listserver.u2ug.org u2-users-requ...@listserver.u2ug.org To: u2-users@listserver.u2ug.org u2-users@listserver.u2ug.org Subject: U2-Users Digest, Vol 34, Issue 13 Date: Wed, Feb 15, 2012 1:00 pm Send U2-Users mailing list submissions

Re: [U2] Universe's DOS command

2012-02-15 Thread Ed Clark
yeah, they left that out. If you look at the docs for the SH. CSH, and VI commands, they suggest that you look at the unix documentation on those commands, but they don't mention it in the manual for DOS. Maybe they assumed you would figure that out by looking at the VOC entry: DOS 001 V

Re: [U2] Universe's DOS command

2012-02-15 Thread Wjhonson
Oh wow. Urm So any command that requires input will hang, I got that, because it's not actually opening an interactive session with *your process* but rather with the server (or thereabouts). So I just connected to the server and checked Task Manager and there are a lot of processes

Re: [U2] Universe's DOS command

2012-02-15 Thread Robert Houben
It depends... You are in DOS mode (as opposed to window mode). If you launch anything that requires a graphical environment, it will launch that environment as LocalSystem or something equivalent and you'll have a problem (you can end-task in task-manager - you've probably already figured that

Re: [U2] Universe's DOS command

2012-02-15 Thread Wjhonson
Thanks. What I was saying was that *if* you DOS /c cmd And that cmd requires input, a task will be created that never dies, evidently. Or perhaps it was because the cmd I was trying to use was ftp perhaps that's the culprit that creates the undead task. Once I killed all the jobs in the Windows

Re: [U2] Universe's DOS command

2012-02-15 Thread George Gallen
I had that same problem with FTP, but I was remote into the server at the time. I figured the process hung, because it triggered one of those program xxx wants to access the internet messages, and was waiting for an operator to Allow or Deny it. Drove me nuts, I gave up trying to run an ftp

Re: [U2] mvToolbox

2012-02-15 Thread Doug Averch
You are telling us a great story with a very unhappy ending for a tool that may have been great in 1995. There is no market for a tool that runs on telnet system no matter what great features it has or could have. That would be like me telling you can code in Java using VI or EMACS. Or better

Re: [U2] mvToolbox

2012-02-15 Thread Wjhonson
There's no market for a tool that runs on a telnet system. Except I think Accuterm is still selling licenses. And it's essentially a tool on a telnet. I mean it's not UVShell. The enhancements are what sells it, for me at least. -Original Message- From: Doug Averch dave...@gmail.com