you can't cancel it with CTRL+C.
Actually, IIRC, Ctrl + Pause/Break will do the trick in DOS.
Originally posted by: Nothinman
Actually, IIRC, Ctrl + Pause/Break will do the trick in DOS.
Ctrl+C is a synonym for Ctrl+break.
C:\Documents and Settings\Chris>ping -n 10 google.com
Pinging google.com [216.239.37.99] with 32 bytes of data:
Request timed out.
Reply from 216.239.37.99: bytes=32 time=186ms TTL=53
Reply from 216.239.37.99: bytes=32 time=26ms TTL=53
Ping statistics for 216.239.37.99:
Packets: Sent = 3, Received = 2, Lost = 1 (33% loss),
Approximate round trip times in milli-seconds:
Minimum = 26ms, Maximum = 186ms, Average = 106ms
Control-Break
Reply from 216.239.37.99: bytes=32 time=29ms TTL=53
Ping statistics for 216.239.37.99:
Packets: Sent = 4, Received = 3, Lost = 1 (25% loss),
Approximate round trip times in milli-seconds:
Minimum = 26ms, Maximum = 186ms, Average = 80ms
Control-C
^C
C:\Documents and Settings\Chris>
Originally posted by: MGMorden
Actually, IIRC, Ctrl + Pause/Break will do the trick in DOS.
u damn noobs are yare on crack!!
Originally posted by: Nothinman
u damn noobs are yare on crack!!
We're the ones on crack? Your solution will only find the executables in the current directory.
Originally posted by: Nothinman
u damn noobs are yare on crack!!
We're the ones on crack? Your solution will only find the executables in the current directory.
Originally posted by: CTho9305
Originally posted by: Nothinman
u damn noobs are yare on crack!!
We're the ones on crack? Your solution will only find the executables in the current directory.
I don't see why he proposes using more rather than the "dir" command's built-in page-at-a-time mode.
Originally posted by: OZEE
Originally posted by: CTho9305
Originally posted by: Nothinman
u damn noobs are yare on crack!!
We're the ones on crack? Your solution will only find the executables in the current directory.
I don't see why he proposes using more rather than the "dir" command's built-in page-at-a-time mode.
That would be the /p flag. So dir *.exe /s/p will find all .exe files on the drive, listing them a page at a time.