Search found 2 matches
- 02 Jul 2013 08:02
- Forum: DOS Batch Forum
- Topic: [SOLVED]Writing created text to a .txt file
- Replies: 3
- Views: 2767
Re: Writing created text to a .txt file
title AssaultCube cls bin_win32\ac_client.exe --init %1 %2 %3 %4 %5 >> AC_Log.txt pause echo ====== echo 1 - Save this session text echo 2 - Back to Main Menu set /p input= if %input%==1 goto savetext if %input%==2 goto delmain :delmain del ac_log.txt goto main Acctually found this code to work for...
- 01 Jul 2013 05:47
- Forum: DOS Batch Forum
- Topic: [SOLVED]Writing created text to a .txt file
- Replies: 3
- Views: 2767
[SOLVED]Writing created text to a .txt file
Basicly, I'm trying to take the text written by an application into a batch file, to be written into a .txt file.. Let me break it down. I play a game that uses a batch code to open the game. The code is; title AssaultCube cls bin_win32\ac_client.exe --init %1 %2 %3 %4 %5 pause Simple: This batch fi...