DOS commands

G

Guest

what is the proper syntax for changing directories in DOS at the command
prompt, and how do I list all the commands avilable to me in DOS. does this
command prompt (windows XP) support BASIC language with line numbers?
 
B

Bruce Chambers

gary said:
what is the proper syntax for changing directories in DOS at the command
prompt, and how do I list all the commands avilable to me in DOS.


Simply click Start > Help and Support, and search on the words "command
line."

does this
command prompt (windows XP) support BASIC language with line numbers?

No, of course not.


--

Bruce Chambers

Help us help you:



They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. -Benjamin Franklin

Many people would rather die than think; in fact, most do. -Bertrand Russell
 
G

Guest

Go to Start/Run, and type: CMD

At that prompt type : HELP

To see the syntax of any command type, for example:

CD /?

IF you had installed MS Dos version 6.2 on the hard drive before Windows,
the boot menu would allow starting up in real Dos, which contains GWBasic.
 
M

MCheu

what is the proper syntax for changing directories in DOS at the command
prompt, and how do I list all the commands avilable to me in DOS.

The change directory command is the same in DOS as Linux:

To go up one level in the directory tree:

cd ..

to move to a subdirectory of the current one, you can use relative
path:

eg. if you're currently in c:\foo\bar and want to go to
c:\foo\bar\sub\

cd sub

to move to a directory elsewhere, you can hop directories one at a
time, or use absolute path:

cd c:\foo\bar\sub

------
To get a list of the commands available to you via the command line
interpreter:

help


does this
command prompt (windows XP) support BASIC language with line numbers?

Not included with the operating system installation, but you can
download any number of freeware BASIC interpreters and compilers.

google with "basic intepreter compiler" or "gwbasic" and you'll find
links to a few.
 
G

Guest

thanks MCheu, just exactly what I need to know

MCheu said:
The change directory command is the same in DOS as Linux:

To go up one level in the directory tree:

cd ..

to move to a subdirectory of the current one, you can use relative
path:

eg. if you're currently in c:\foo\bar and want to go to
c:\foo\bar\sub\

cd sub

to move to a directory elsewhere, you can hop directories one at a
time, or use absolute path:

cd c:\foo\bar\sub

------
To get a list of the commands available to you via the command line
interpreter:

help




Not included with the operating system installation, but you can
download any number of freeware BASIC interpreters and compilers.

google with "basic intepreter compiler" or "gwbasic" and you'll find
links to a few.
 
R

Ron Hardin

Check out Cygwin, which gives you a Linux-like envirnoment under XP,
if you're conversant with it. It makes XP very habitable. No need
to use DOS.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top