vote up -1 vote down star

nevermind, this obviously a sore subject...

flag

49% accept rate
2  
Apparently you've never seen Linux. ;-) – jro Mar 17 at 6:53
Sounds like a troll – Preet Sangha Mar 17 at 6:55
I'm comparing the command-line entry of the two, which appears to be Mike's beef. Hopefully nobody is going to confuse DOS for Bash anytime soon. :-) – jro Mar 17 at 6:56
yes, you are alone – Mikeage Mar 17 at 7:07
1  
DOS is long dead. Command line applications are not.. – dbr Mar 17 at 10:32

closed as subjective and argumentative by John T, krosenvold, Brian Rasmussen, Shog9, Manni Mar 17 at 7:24

11 Answers

vote up 2 vote down

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?

awk '{print $7}' logfile | sort | uniq -c | sort -rn | grep "\.jpg" | head
awk 'BEGIN {max = 0} {if ($3>max) max=$3} END {print max}' data.dat
find . -mtime +365 | xargs rm

Is it reasonable to develop a GUI application every time you need something like this?

link|flag
vote up 0 vote down

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)

grep 'some_string_to_search' `find . -name 'somefilename.*' -mtime -2` > outputfile

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.

link|flag
vote up 1 vote down

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 ;-)

link|flag
vote up 6 vote down

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:

  • The inherent simplicity of command line tools make them the best candidate for debugging and troubleshooting a problem. (Not just programming problems; system configuration etc. all fall under this)
  • Remote diagnostic; Working on a GUI, no matter how cool it may look; is not efficient. You just can't wait for your GUI to load and refresh for you to remotely configure your server. command line is fast, and will remain fast.
  • As much as you hate command line, it will always be easier to write simpler command line scripts than to do fancy GUI via scripting. And why would I want to create a GUI for my automation scripts? it just complicates them and I deviate from my main objective "Automation" and makes me start worrying about (G)UI!

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

link|flag
It sucks a lot less than it used to, it's actually easy to do a lot of the things that used to be impossible (variable and string manipulation, arrays, etc). It's still not even a pimple on the cloaca of bash, of course :-) – paxdiablo Mar 17 at 7:21
@Pax : I agree :) ... it sucks a lot less! But, as you said ... :D – xk0der Mar 17 at 13:47
vote up 0 vote down

I've seen the DOS prompt on bank ATM machines that have crashed so I hope it's not going away anytime soon!

link|flag
Many ATMs still run OS/2 (or eComStation nowadays), proof that it really was a robust system. – paxdiablo Mar 17 at 7:23
Funny I've seen a number of NT4 machines as crached ATMS over the years. – Preet Sangha Mar 17 at 10:26
vote up 0 vote down

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.

link|flag
Why Should it Die? Becuase using it is slow and cumbersome in user environment and a knowledge of obsolete commands essential. A GUI does not require a memory bank full of obscure commands... – Mike Trader Mar 17 at 7:09
Hello, I'm a Barbie Programmer! Remembering several commands is hard, let's go shopping! – Eugene Morozov Mar 17 at 7:35
lol. Seriously though SLOW it is not. I find that the most important thing is to get things done - QUICKLY! I can click and point like the next guy - but I try and avoid having to do things more than once. I prefer to let machines do the hard work. Scripting is perfect for this. – Preet Sangha Mar 17 at 10:25
vote up 1 vote down

you might not be alone in hating DOS , but the folks at powershell would surely disagree.

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 15 vote down

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.

link|flag
well said indeed – John T Mar 17 at 7:09
+1 to. I still have an old DOS machine at home that works. But I also frequently using batch script. – Gamecat Mar 17 at 7:40
+1 besides... a dos machine is nice to fireup them older games – Newtopian Mar 17 at 8:47
dosbox.sourceforge.net is better for old games. :) – Eugene Morozov Mar 17 at 10:31
+1 : For loving command line! :P – xk0der Mar 17 at 13:56

Not the answer you're looking for? Browse other questions tagged or ask your own question.