Sponsored Content
Special Forums Windows & DOS: Issues & Discussions Close CMD after opening multiple exe's with it ? Post 302837443 by pasc on Thursday 25th of July 2013 06:43:23 PM
Old 07-25-2013
Now I tried this:

Code:
rem Prog1.exe
cd "Path"
Prog1.exe
Prog2.exe
EXIT

(source:http://www.sevenforums.com/tutorials...rams-once.html , removed the start before the ".exe"'s because it would break the whole thing.)

It now reliable opens both programs, the commandline however stays open until I close the second program by using "Alt + F4" means or by closing out regularily.

The quesition now is:
How do I get the commandline to just close out after opening those programs ?
It always waits for me to close the program till it executes the EXIT command.
 

10 More Discussions You Might Find Interesting

1. Programming

how To edit exe to insert a serial no wich can be usd by runing exe

At time of installation I have to open the resource. and i have to insert a string serial number in the exe. please provide me code to edit the exe (in solaris) to insert a serial number which can be used by exe at run time. (6 Replies)
Discussion started by: ssahu
6 Replies

2. UNIX for Dummies Questions & Answers

man <cmd> >> cmd.txt

I've noticed most of my postings here are because of syntax errors. So I want to begin compiling a large txt file that contains all the "man <cmd>" of the commands I most have problems with. I ran a "man nawk >> nawk.txt" but it included a header/footer on each "page". Anyone know how I'd be... (6 Replies)
Discussion started by: yongho
6 Replies

3. Shell Programming and Scripting

Opening multiple documents at once

I'm trying this:$ for n in `ls` ; do xterm -e vim $n & ; done bash: syntax error near unexpected token `;' $I want to edit my files all at once, not one at a time. How can I do that? (2 Replies)
Discussion started by: Orange Stripes
2 Replies

4. UNIX for Advanced & Expert Users

Multiple instances of windows exe from unix

Hi, I have a requirement to run multiple instances of an .exe file present in windows server from unix machine. The number of threads to be invoked is determined dynamically based on a variable field. We will be passing some parameters to windows .exe file for each instance. I am a unix... (2 Replies)
Discussion started by: sam99
2 Replies

5. Windows & DOS: Issues & Discussions

bat file opening multiple IE windows

I'm trying to open multiple IE windows and enter the same text and press <enter> on each. Here's an example with what I have so far. REM Open @echo on start http://10.1.1.1 ping 1.1.1.1 -n 5 -w 1000 >nul @echo password start http://10.1.1.2 ping 1.1.1.1 -n 5 -w 1000 >nul @echo password... (2 Replies)
Discussion started by: Pitt
2 Replies

6. Shell Programming and Scripting

Run multiple commands in $() without opening a new shell

The code below works, but takes too many lines and looks awkward: db2 "export to $filename of del select * from $table with ur"|tee -a $LOGFILE|awk '/Number of rows exported:/ {print $5}' > numrows.tmp numrows=$(cat numrows.tmp) rm numrows.tmp When I try the... (2 Replies)
Discussion started by: akar_naveen
2 Replies

7. Windows & DOS: Issues & Discussions

Long UNC path not working in CMD.EXE on remote machine

Hi, I am trying to connect to a remote server using Plink tool. Both my local and remote machines are Windows. On remote server, I have OpenSSH server installed. I am able to run commands on remote machine but there is some problem with long UNC path, which I noticed today. For... (3 Replies)
Discussion started by: Technext
3 Replies

8. Shell Programming and Scripting

Unix cmd prompt how to get old cmd run?

Hi, I am using SunOS I want to serch my previous command from unix prompt (like on AIX we can search by ESC -k) how to get in SunOs urgent help require. (10 Replies)
Discussion started by: RahulJoshi
10 Replies

9. Programming

when parent process close, how to close the child?

can someone provide an example, where if the parent process quits for any reason, then the child process will also close? (3 Replies)
Discussion started by: omega666
3 Replies

10. Shell Programming and Scripting

Listing multiple files in windows cmd

i have multiple files like how to do list files from new_30 to new_50 i have tried this command but it wont work dir new*{30-50}.txt my exact requirement is to get line count of these files the command which work is FOR %i IN (new*.txt) DO find %i /c /v "" but at the... (1 Reply)
Discussion started by: sagar_1986
1 Replies
strip_stx(1)						      General Commands Manual						      strip_stx(1)

NAME
strip_stx - a simple literate programming tool SYNOPSIS
strip_stx [ -c commentchars ] [ -B open close ] [ file file ... ] DESCRIPTION
strip_stx takes all structured text (Stx) markup away from the listed files, leaving only text in preformatted blocks. If no files are listed, standard input is read instead. The result is written to standard output. This is intended as a simple literate programming tool: programmers may write their programs as documents, processing them with stx2any for documentation and publication but with strip_stx for compilation / running the code. More information about Stx is on the manpage of stx2any. OPTIONS
-c commentchars comment out the non-code portions (text outside preformatted blocks) with the given commentchars at the beginning of every line. If this option (or the next one) is not given, non-code portions are simply deleted. -B open close surround the non-code portions with (comment-)opening and closing markers open and close respectively. This option can be used together with the -c option. --version, -V Just show version information and exit. --help, -? Just show a short help message and exit. EXAMPLES
strip_stx parse.py.stx > parse.py Strip documentation away from the source file parse.py.stx, supposedly only leaving python code there. strip_stx -B '/*' ' */' -c ' * ' my.c.stx > my.c Make a literate C code document into proper C source file, leaving the documentation in neatly-formatted comments. strip_stx -B 'cat < < EOT' 'EOT' embshell.stx > embshell.sh Turn the document embshell.stx into an "embedded shell" script, where all non-program portions are printed to the standard output when exe- cution reaches them. This is akin to PHP or eperl; but strip_stx is not really meant for this. There are other options for making embed- ded scripts, such as defining your own markup for the code portions or handling the program logic with m4 within stx2any. SEE ALSO
stx2any (1) AUTHOR
This page is written by Panu A. Kalliokoski. Panu A. Kalliokoski strip_stx(1)
All times are GMT -4. The time now is 12:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy