Search found 5 matches

by Flyingmetalyak
21 Feb 2010 10:56
Forum: DOS Batch Forum
Topic: For /f command help
Replies: 2
Views: 4909

Re: For /f command help

It works, thanks :D
by Flyingmetalyak
20 Feb 2010 20:16
Forum: DOS Batch Forum
Topic: For /f command help
Replies: 2
Views: 4909

For /f command help

I'm working on this file that makes other files and names them as a users input. Only problem is if the user enters a space and when I try to use a for /f command it says that it can't find the file because of the space. Here is an example of what I'm using For /f "delims=" %%a in (%userpr...
by Flyingmetalyak
28 Jan 2010 16:14
Forum: DOS Batch Forum
Topic: AT command help
Replies: 5
Views: 6795

Re: AT command help

Thanks, this really helps :D
by Flyingmetalyak
15 Jan 2010 21:18
Forum: DOS Batch Forum
Topic: How to capture keyboard value and write in a file???
Replies: 1
Views: 4203

Well, you could do this...

Code: Select all

@ECHO OFF
set /p whatever=
ECHO."%whatever%">> "whatever.txt"
by Flyingmetalyak
15 Jan 2010 20:56
Forum: DOS Batch Forum
Topic: AT command help
Replies: 5
Views: 6795

AT command help

I'm trying to make a batch file that will perform a command at a specific time. I've been looking around on sites for some help with this, but I haven't been successful at getting it to work. Any help would be greatly appreciated. Also, if this would be of any help I'm trying to get it to perform th...