nevermind, this obviously a sore subject...
|
|
|||||||||||||||
|
closed as subjective and argumentative by John T, krosenvold, Brian Rasmussen, Shog9, Manni Mar 17 at 7:24 |
|
|
I cannot understand a programmer who doesn't apprehend beauty and simplicity of command line. Problem with a GUI is that you're restricted to the choices that GUI programmer made. And you can't describe complex things using GUI (try to implment GUI for managing Apache rewrite rules, or a decent firewall). Or even better, try to make two or more GUI applications work together, like shell commands are communicating via pipes. And what can you suggest, for example, to replace any of these commands?
Is it reasonable to develop a GUI application every time you need something like this? |
||
|
|
|
|
As mentioned by several other people what you are talking about is not 'DOS' but the command line interface. This will not disappear any time soon and in fact is starting to make a re-appearance in the Window world. Windows server 2008 will ship with the option to install and run 'Server Core'. This is the basic functionality needed to run the server without a GUI and will present a command line interface. Rather than despise the command line you should learn to love it. It will add to your skillset in many ways if you become intimate with a shell, you will also not feel totally lost if your career path requires you to access linux or Macs in the future. The unix shell, and to a lesser extent windows shells provide a set of tools that allow you to do very intricate tasks on the command line, for example on a linux machine it is trivial to issue a command to find all files with a specific name that were modified after a certain date extract certain strings from them and write the output to another file. These are the sort of daily tasks sysadmins and many programmers need to perform on a daily basis and are hard/impossible to do from within a GUI. FYI the command to do this on linux is a 1 liner (untested script)
How would you do this without a command line, well you would probably write a program to do it. The shell can be your friend and learning it would be a big plus for most developers. |
||
|
|
|
|
First, the Windows Command Prompt is not DOS. The command prompt is a Windows Console providing IO services to a copy of CMD.EXE which is a native Windows command line shell, and a good leap forward from DOS's COMMAND.COM despite its many similarities. You can replace CMD.EXE with a shell of your choice, just as you can in Unix and Linux. You can also replace Windows Explorer with a different GUI if you are persistent enough. For one of my consulting customers, I support a commercial product for an extremely niche market that uses an embedded system based on a Z180 CPU in a single board computer, with the firmware written in a dialect of BASIC intended to produce ROM-able standalone programs in this board. This SBC was hot technology in about 1985, and is still available for sale. The BASIC compiler runs under CP/M-80. I haven't had a live system that ran CP/M since sometime around 1982 (and that was a Microsoft CP/M card in an Apple ][c), so I'm running CP/M in an emulator provided by the compiler's vendor. That emulator is an aging 16-bit DOS program, so on my XP box, it runs in a command prompt by loading NTVDM.EXE which is the Windows DOS emulator. Amazingly, this house of cards actually works. In short, DOS is here for at least as long as COBOL ;-) |
||
|
|
|
|
What you are calling DOS is essentialy a command line interface to the Windows Operating Systems (Windows XP onwards, if I remember correctly). There are multitude of reasons why command lines exists and should exists. I'll just list a few here, for you to ponder upon:
Hope this helps your think beyond, and change your mind about the good old command line. :) Side note: Although windows command line still sucks big time compared to the linux console, because of the way commands are named and other stuff; It still is cool that you can boot into command line safe mode and without worrying about GUI drivers and stuff and fix-up your problems. I'll edit the answer as I come-up with more reasons |
||||
|
|
|
I've seen the DOS prompt on bank ATM machines that have crashed so I hope it's not going away anytime soon! |
||||
|
|
|
Why should it die? Its perfectly good interface for doing things. Just because certain metaphors are not supported it doesn't mean its not valuable. I'd say get over your hatred and learn to use the most appropriate tool. |
||||||
|
|
|
you might not be alone in hating DOS , but the folks at powershell would surely disagree. |
||
|
|
|
|
No, you aren't alone ... but if you don't/can't appreciate the inherent beauty of the command line interpreter (it's no longer the entire operating system) I'm really not sure the answers here will sway you. |
||
|
|
|
|
This is hugely subjective. DOS (and any console interface) has some huge advantages over a GUI, if you know the commands. It's all about your target audience. Low level networking commands and low level db control works great from a console if you know the right commands to use, and the correct syntax. It's much faster, lighter weight, etc, than dealing with a GUI. It also tends to work with low bandwidth remote access much better than a GUI application, even with modern remote desktop access. Also, it's easier to script and combine command line interfaces than GUI applications. DOS and other command line interfaces have their place. |
||
|
|
|
|
To be accurate, what you see in Windows2k/XP/03 and so forth is not really "DOS." It is a command environment that essentially emulates DOS. I don't see this going away in there near or not-to-distant future; there are too many applications relying on it. |
||
|
|
|
|
The great power of "DOS" applications (it hasn't been DOS for a long time) is the ability to put together a cmd script to call them. That's not always possible with GUI applications without using ActiveX/Powershell/VBScript/keystroke-sending-tricks. This is where UNIX gets its power from, the ability to run applications and connect standard output of one to standard input of another. I wouldn't give up that ability just to get a pretty interface. Yes, the GUI is nice for interactivity but, in a corporate environment, the ability to script is a godsend. Otherwise, every modification to the hundreds of PCs under your control makes you lie awake at night, shivering in fear. |
||||||||||
|
