public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: L A Walsh <cygwin@tlinx.org>
To: "cygwin@cygwin.com" <cygwin@cygwin.com>
Subject: how is cygstart different from cmd /c or how to have cygstart start 'inline'?
Date: Fri, 21 Dec 2018 13:15:00 -0000	[thread overview]
Message-ID: <5C1C973B.7050509@tlinx.org> (raw)

Got a program that starts under cygstart, but I'd
like to be able to start it without starting up the program
in a new window..so was trying cmd /c.

I compared env's and noted both PATH and TMP had been
converted back to the backslash using case, so I
did that manually:

if ((usecmd)); then
    export TMP=$(cygpath -w $TMP)
    my newpath=""
    my sep=""
    readarray -t pathar < <(echo -E "$PATH"|tr ":" "\n")
    for p in "${pathar[@]}"; do
        n=$(cygpath -w "$p")
        newpath="$newpath$sep$n"
        #echo -E "newpath=$newpath"
        sep=";"
    done
    export Path=$newpath
fi

But no luck in launching (cygstart case works):

cd "$ldir" && {
    if ((usecmd)); then
        'c:/windows/system32/cmd.exe' /c "$lpath" "${args[@]}"
    else
        cygstart "$lpath" "${args[@]}"
    fi
}


So what else does cygstart do that I might setup
before a "cmd /c"
to get the target to run?

Or anyway to have cygstart run the command with its output in the
current window?

Thanks!
Linda


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

             reply	other threads:[~2018-12-21  7:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-21 13:15 L A Walsh [this message]
2018-12-21 15:12 ` Brian Inglis
2018-12-24 15:31   ` L A Walsh
2018-12-22 10:26 ` cyg Simple

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5C1C973B.7050509@tlinx.org \
    --to=cygwin@tlinx.org \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).