Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.
sorry I have'nt had much experience with linux yet but if you post your problem I can do a search today and maybe help you out........this rar is different from the above one....just same name!
- - - How about this: Create a menu allowing users to pick any of those utilities from that menu. YouŽll need to know SET /P to do that.
How about choice.com ?
QuoteHow about choice.com ?don't think choice.com is in newer win32 distribution. got to download from somewhere else i think
Quote from: Dilbert on April 01, 2007, 11:32:40 PM- - - How about this: Create a menu allowing users to pick any of those utilities from that menu. YouŽll need to know SET /P to do that. How about choice.com ?
Quote from: WillyW on April 02, 2007, 09:06:35 AMQuote from: Dilbert on April 01, 2007, 11:32:40 PM- - - How about this: Create a menu allowing users to pick any of those utilities from that menu. YouŽll need to know SET /P to do that. How about choice.com ?CHOICE doesn't allow for string input, making its use limited.
Quote from: ghostdog74 on April 02, 2007, 09:28:14 AMQuoteHow about choice.com ?don't think choice.com is in newer win32 distribution. got to download from somewhere else i thinkReally? If I'd ever learned that before, I'd forgotten.Thanks.Are you using WinXP now? can you do a all-over search and tell us if choice.com is found?And - is it even downloadable? Legit, I mean.
here's some info
and no, its not in XP.
:CHOICESET /P input = "Enter any string>"IF /I "%input"=="StringOne" GOTO StringOneREM Etc... etc...
Technically, DOS batch files aren't programming languages; they're interpreted languages.
@echo offfor /l %%A in (1,1,20) do ( <nul (set/p z=.) >nul ping 127.0.0.1 -n 3 )
for /l %%A in (1,1,20) do ( <nul (set/p z=.)>nul & ping 127.0.0.1 -n 3)
@echo offfor /f "tokens=1,2" %%x in ('date /t') do ( set dow=%%x )if %dow%=Mon set folder=c:\Mondayif %dow%=Tue set folder=c:\Tuesday...